Skip to content

Commit

Permalink
handling for empty tags has been improved (ydb-platform#4780)
Browse files Browse the repository at this point in the history
  • Loading branch information
dorooleg authored and MrLolthe1st committed May 28, 2024
1 parent 2dc3296 commit 5e9a3f8
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -512,6 +512,10 @@ class TS3ApplicatorActor : public NActors::TActorBootstrapped<TS3ApplicatorActor
ev->Get()->State->PartNumberMarker = root.Node("s3:NextPartNumberMarker", false, nss).Value<TString>();
PushListParts(ev->Get()->State);
} else {
if (state->Tags.empty()) {
LOG_W("ListParts returned empty parts list for " << ev->Get()->State->BuildUrl() << " (multipart upload may be completed already)");
return;
}
PushCommitMultipartUpload(state);
}
} else {
Expand Down

0 comments on commit 5e9a3f8

Please sign in to comment.