Browse Source

edge case: old entry was not replicated to remote storage

pull/2631/head
chrislu 3 years ago
parent
commit
84c9bc4389
  1. 2
      weed/command/filer_remote_gateway_buckets.go

2
weed/command/filer_remote_gateway_buckets.go

@ -264,7 +264,7 @@ func (option *RemoteGatewayOptions) makeBucketedEventProcessor(filerSource *sour
// update directory property
return nil
}
if filer.IsSameData(message.OldEntry, message.NewEntry) {
if message.OldEntry.RemoteEntry != nil && filer.IsSameData(message.OldEntry, message.NewEntry) {
glog.V(2).Infof("update meta: %+v", resp)
oldDest := toRemoteStorageLocation(oldBucket, util.NewFullPath(resp.Directory, message.OldEntry.Name), oldRemoteStorageMountLocation)
return client.UpdateFileMetadata(oldDest, message.OldEntry, message.NewEntry)

Loading…
Cancel
Save