Skip to content

Commit

Permalink
Merge pull request apache#1479 from daniancu/OAK-10826
Browse files Browse the repository at this point in the history
OAK-10826 - Misleading warning about missing checkpoint
  • Loading branch information
rishabhdaim authored May 24, 2024
2 parents 4a4f2ed + b499897 commit 049d771
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ public String checkpoint(long lifetime) {
@Override
public Map<String, String> checkpointInfo(String checkpoint) {
if (!checkpointExists(ctx.getGlobalStore().getNodeStore(), checkpoint)) {
LOG.warn("Checkpoint {} doesn't exist. Debug info:\n{}", checkpoint, checkpointDebugInfo(), new Exception());
LOG.debug("Checkpoint {} doesn't exist. Debug info:\n{}", checkpoint, checkpointDebugInfo(), new Exception("call stack"));
return Collections.emptyMap();
}
return copyOf(filterKeys(ctx.getGlobalStore().getNodeStore().checkpointInfo(checkpoint), new Predicate<String>() {
Expand Down

0 comments on commit 049d771

Please sign in to comment.