Browse Source

Return ETag from remote when file doesn't exist on Filer (#4025)

pull/4028/head
aronneagu 2 years ago
committed by GitHub
parent
commit
77699855a7
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      weed/filer/filechunks.go

3
weed/filer/filechunks.go

@ -42,6 +42,9 @@ func ETag(entry *filer_pb.Entry) (etag string) {
}
func ETagEntry(entry *Entry) (etag string) {
if entry.IsInRemoteOnly() {
return entry.Remote.RemoteETag
}
if entry.Attr.Md5 == nil {
return ETagChunks(entry.GetChunks())
}

Loading…
Cancel
Save