fix: make ci and local use the same toolchain (#72)

Signed-off-by: yihong0618 <zouzou0208@gmail.com>
This commit is contained in:
yihong
2025-07-07 10:40:53 +08:00
committed by GitHub
parent abd5dff9b5
commit 72aead5466
41 changed files with 1248 additions and 894 deletions
+7 -4
View File
@@ -236,10 +236,13 @@ impl BucketMetadataSys {
futures.push(async move {
sleep(Duration::from_millis(30)).await;
let _ = api
.heal_bucket(&bucket, &HealOpts {
recreate: true,
..Default::default()
})
.heal_bucket(
&bucket,
&HealOpts {
recreate: true,
..Default::default()
},
)
.await;
load_bucket_metadata(self.api.clone(), bucket.as_str()).await
});