Skip to content

Commit 230ddb9

Browse files
authored
feat(storage): Fix the bucket name not found error (#15274)
* feat(storage): Fix the bucket name not found error * Remove the p.option move
1 parent 5cd5867 commit 230ddb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

google/cloud/storage/internal/async/connection_impl.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ AsyncConnectionImpl::ResumeAppendableObjectUpload(AppendableUploadParams p) {
307307
future<StatusOr<std::unique_ptr<storage_experimental::AsyncWriterConnection>>>
308308
AsyncConnectionImpl::AppendableObjectUploadImpl(AppendableUploadParams p) {
309309
auto current = internal::MakeImmutableOptions(std::move(p.options));
310-
auto request = std::move(p.request);
310+
auto request = p.request;
311311
std::int64_t persisted_size = 0;
312312
std::shared_ptr<storage::internal::HashFunction> hash_function =
313313
CreateHashFunction(*current);

0 commit comments

Comments
 (0)