Browse Source

s3: log errors instead of stopping when checking isDirectoryAllEmpty has error

pull/1794/head
Chris Lu 4 years ago
parent
commit
132f275d04
  1. 2
      weed/s3api/s3api_objects_list_handlers.go

2
weed/s3api/s3api_objects_list_handlers.go

@ -265,7 +265,7 @@ func (s3a *S3ApiServer) doListFilerEntries(client filer_pb.SeaweedFilerClient, d
} else { } else {
var isEmpty bool var isEmpty bool
if isEmpty, err = s3a.isDirectoryAllEmpty(client, dir, entry.Name); err != nil { if isEmpty, err = s3a.isDirectoryAllEmpty(client, dir, entry.Name); err != nil {
return
glog.Errorf("check empty folder %s: %v", dir, err)
} }
if !isEmpty { if !isEmpty {
eachEntryFn(dir, entry) eachEntryFn(dir, entry)

Loading…
Cancel
Save