From bbc77f7af46d5938c059917d9c0c43ef7bb8a049 Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Fri, 3 Sep 2021 22:56:59 -0700 Subject: [PATCH] fix compilation --- weed/remote_storage/gcs/gcs_storage_client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weed/remote_storage/gcs/gcs_storage_client.go b/weed/remote_storage/gcs/gcs_storage_client.go index 37af91f55..fce7ba945 100644 --- a/weed/remote_storage/gcs/gcs_storage_client.go +++ b/weed/remote_storage/gcs/gcs_storage_client.go @@ -208,7 +208,7 @@ func (gcs *gcsRemoteStorageClient) ListBuckets() (buckets []*remote_storage.Buck break } if err != nil { - return + return buckets, err } buckets = append(buckets, &remote_storage.Bucket{ Name: b.Name,