Skip to content

Commit

Permalink
RecoveryTaskCreator - swap log argument order to match format string (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
baroquebobcat authored Sep 17, 2024
1 parent 723dba7 commit 2209408
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -359,8 +359,8 @@ private int deleteSnapshots(
} else {
LOG.warn(
"Failed to delete {} snapshots within {} secs.",
SNAPSHOT_OPERATION_TIMEOUT_SECS,
snapshotsToBeDeleted.size() - successfulDeletions);
snapshotsToBeDeleted.size() - successfulDeletions,
SNAPSHOT_OPERATION_TIMEOUT_SECS);
}
return successfulDeletions;
}
Expand Down

0 comments on commit 2209408

Please sign in to comment.