Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kssenii committed Oct 17, 2023
1 parent 96c518b commit 8744cd9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Storages/S3Queue/S3QueueFilesMetadata.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ void S3QueueFilesMetadata::setFileProcessedForUnorderedMode(ProcessingNodeHolder
if (holder->remove(&requests, &responses))
{
LOG_TEST(log, "Moved file `{}` to processed", path);
zk_client->tryRemove(node_name + ".retriable", -1);
zk_client->tryRemove(zookeeper_failed_path / node_name + ".retriable", -1);
return;
}

Expand Down Expand Up @@ -537,7 +537,7 @@ void S3QueueFilesMetadata::setFileProcessedForOrderedMode(ProcessingNodeHolderPt
if (holder->remove(&requests, &responses))
{
LOG_TEST(log, "Moved file `{}` to processed", path);
zk_client->tryRemove(node_name + ".retriable", -1);
zk_client->tryRemove(zookeeper_failed_path / node_name + ".retriable", -1);
return;
}

Expand Down

0 comments on commit 8744cd9

Please sign in to comment.