From c2676df2f891797819f57ee93b53a33d7dbcb6e6 Mon Sep 17 00:00:00 2001 From: Xiaoge Su Date: Tue, 14 Jun 2022 11:29:06 -0700 Subject: [PATCH] fixup! Reformat source --- fdbclient/S3BlobStore.actor.cpp | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/fdbclient/S3BlobStore.actor.cpp b/fdbclient/S3BlobStore.actor.cpp index 1a7cfe40da..7e97a459c8 100644 --- a/fdbclient/S3BlobStore.actor.cpp +++ b/fdbclient/S3BlobStore.actor.cpp @@ -395,7 +395,9 @@ std::string S3BlobStoreEndpoint::getResourceURL(std::string resource, std::strin return r; } -std::string constructResourcePath(Reference b, const std::string& bucket, const std::string& object) { +std::string constructResourcePath(Reference b, + const std::string& bucket, + const std::string& object) { std::string resource; if (b->getHost().find(bucket + ".") != 0) { @@ -482,7 +484,9 @@ ACTOR Future deleteRecursively_impl(Reference b, loop { choose { // Throw if done throws, otherwise don't stop until end_of_stream - when(wait(done)) { done = Never(); } + when(wait(done)) { + done = Never(); + } when(S3BlobStoreEndpoint::ListResult list = waitNext(resultStream.getFuture())) { for (auto& object : list.objects) { @@ -1193,7 +1197,9 @@ ACTOR Future listObjects_impl(Reference