diff options
| author | elee <eddy@gfxlabs.io> | 2022-03-18 22:21:57 -0500 |
|---|---|---|
| committer | elee <eddy@gfxlabs.io> | 2022-03-18 22:21:57 -0500 |
| commit | beb406bbbb5e67fc66a02d264c670a8fe11785b7 (patch) | |
| tree | 5a753aefc82d4bb1c34096f7b31803343da41d27 /weed/filer/arangodb/arangodb_store.go | |
| parent | 411c0df3fec3344c3e5538cf56b54c1567162386 (diff) | |
| download | seaweedfs-beb406bbbb5e67fc66a02d264c670a8fe11785b7.tar.xz seaweedfs-beb406bbbb5e67fc66a02d264c670a8fe11785b7.zip | |
fix ls, onBucketDelete still not triggering
Diffstat (limited to 'weed/filer/arangodb/arangodb_store.go')
| -rw-r--r-- | weed/filer/arangodb/arangodb_store.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/filer/arangodb/arangodb_store.go b/weed/filer/arangodb/arangodb_store.go index d27799b0e..27ed9132b 100644 --- a/weed/filer/arangodb/arangodb_store.go +++ b/weed/filer/arangodb/arangodb_store.go @@ -292,7 +292,7 @@ func (store *ArangodbStore) ListDirectoryEntries(ctx context.Context, dirPath ut } func (store *ArangodbStore) ListDirectoryPrefixedEntries(ctx context.Context, dirPath util.FullPath, startFileName string, includeStartFile bool, limit int64, prefix string, eachEntryFunc filer.ListEachEntryFunc) (lastFileName string, err error) { - targetCollection, err := store.extractBucketCollection(ctx, dirPath) + targetCollection, err := store.extractBucketCollection(ctx, dirPath+"/") if err != nil { return lastFileName, err } |
