From 8f5baa8bcf4e011136fdd8f56307e38654e796be Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Fri, 9 Jan 2026 13:05:08 -0800 Subject: [PATCH] Fix syntax error: missing closing brace --- weed/filer/abstract_sql/abstract_sql_store.go | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/weed/filer/abstract_sql/abstract_sql_store.go b/weed/filer/abstract_sql/abstract_sql_store.go index 17c3bad5e..2b768fbaf 100644 --- a/weed/filer/abstract_sql/abstract_sql_store.go +++ b/weed/filer/abstract_sql/abstract_sql_store.go @@ -28,10 +28,10 @@ type SqlGenerator interface { type AbstractSqlStore struct { SqlGenerator - DB *sql.DB - SupportBucketTable bool - dbs map[string]bool - dbsLock sync.Mutex + DB *sql.DB + SupportBucketTable bool + dbs map[string]bool + dbsLock sync.Mutex RetryableErrorCallback func(err error) bool } @@ -322,6 +322,7 @@ func (store *AbstractSqlStore) DeleteFolderChildren(ctx context.Context, fullpat return util.RetryUntil("DeleteFolderChildren", doDeleteFolderChildren, store.RetryableErrorCallback) } return doDeleteFolderChildren() +} func (store *AbstractSqlStore) ListDirectoryPrefixedEntries(ctx context.Context, dirPath util.FullPath, startFileName string, includeStartFile bool, limit int64, prefix string, eachEntryFunc filer.ListEachEntryFunc) (lastFileName string, err error) {