Skip to content

Commit

Permalink
Resolving conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
shalumariamsheji committed May 2, 2022
1 parent 3c95083 commit 5be74a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ public synchronized void cancelToResume()

public void OnSnapshotXCompleted(boolean capture, long snapshotId)
{
log.debug("OnSnapshotXCompleted() is called!, capture: %b, snapshotId: %d", capture, snapshotId);
LOG.debug("OnSnapshotXCompleted() is called!, capture: %b, snapshotId: %d", capture, snapshotId);
if (!capture) {
restoreInProgress = false;
captureSnapshotId = 0;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ public void onFailure(Throwable t)
* if node is otherwise (e.g.active), keep retrying till timeout of maxErrorDuration
*/
FailureDetector.State state = failureDetector.getState(fromUri(uri));
log.debug("failure detector state is " + state.toString());
LOG.debug("failure detector state is " + state.toString());
hasFailed = (backoff.maxTried() &&
!FailureDetector.State.ALIVE.equals(state)
|| backoff.timeout());
Expand Down

0 comments on commit 5be74a1

Please sign in to comment.