Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add timeout before verify call to flush()
  • Loading branch information
brenuart committed Jul 14, 2021
commit 95f308342630f31555c841e888045af5954f14f5
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ public void flushFlushable() throws Exception {
appender.append(event);

verify(flushableDelegate, timeout(VERIFICATION_TIMEOUT)).doAppend(event);
verify(flushableDelegate).flush();
verify(flushableDelegate, timeout(VERIFICATION_TIMEOUT)).flush();
}


Expand Down