This commit is contained in:
Konstantin Lebedev
2020-08-31 21:52:05 +05:00
parent a8de332beb
commit 22f32e75c4
9 changed files with 9 additions and 9 deletions

View File

@@ -138,7 +138,7 @@ func (fsw *FilerStoreWrapper) ListDirectoryPrefixedEntries(ctx context.Context,
stats.FilerStoreHistogram.WithLabelValues(fsw.ActualStore.GetName(), "list").Observe(time.Since(start).Seconds())
}()
entries, err := fsw.ActualStore.ListDirectoryPrefixedEntries(ctx, dirPath, startFileName, includeStartFile, limit, prefix)
if err.Error() == UnsupportedListDirectoryPrefixedErr.Error() {
if err.Error() == ErrUnsupportedListDirectoryPrefixed.Error() {
count := 0
notPrefixed, err := fsw.ActualStore.ListDirectoryEntries(ctx, dirPath, startFileName, includeStartFile, limit)
if err != nil {