Skip to content

Commit

Permalink
HDDS-11419. Fix waitForCheckpointDirectoryExist log message (apache#7199
Browse files Browse the repository at this point in the history
)
  • Loading branch information
devabhishekpal authored Sep 14, 2024
1 parent a7d7e37 commit 50f2563
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public static boolean waitForCheckpointDirectoryExist(File file,
final boolean success = RatisHelper.attemptUntilTrue(file::exists, POLL_INTERVAL_DURATION, maxWaitTimeout);
if (!success) {
LOG.info("Checkpoint directory: {} didn't get created in {} secs.",
maxWaitTimeout.getSeconds(), file.getAbsolutePath());
file.getAbsolutePath(), maxWaitTimeout.getSeconds());
}
return success;
}
Expand Down

0 comments on commit 50f2563

Please sign in to comment.