Skip to content

Commit

Permalink
HBASE-22652 Flakey TestLockManager; test timed out after 780 seconds
Browse files Browse the repository at this point in the history
Signed-off-by: Duo Zhang <Apache9@apache.org>
  • Loading branch information
saintstack committed Jul 3, 2019
1 parent cc62cb8 commit be432b7
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,6 @@ public void add(InlineChore chore) {
}

public void add(Procedure<TEnvironment> procedure) {
// On the assert, we expect WAITING_TIMEOUT but timing could make it so lock gets released by
// time we get here and in those cases the state could be back to RUNNABLE. Let it
assert procedure.getState() == ProcedureState.WAITING_TIMEOUT ||
procedure.getState() == ProcedureState.RUNNABLE;
LOG.info("ADDED {}; timeout={}, timestamp={}", procedure, procedure.getTimeout(),
procedure.getTimeoutTimestamp());
queue.add(new DelayedProcedure<>(procedure));
Expand Down

0 comments on commit be432b7

Please sign in to comment.