Skip to content

Commit

Permalink
fix: Async logging should not rethrow error in onFailure callback (#923)
Browse files Browse the repository at this point in the history
  • Loading branch information
losalex committed Mar 31, 2022
1 parent 7f7f488 commit 1adf867
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -882,7 +882,7 @@ public void flush() {
try {
ApiFutures.allAsList(writesToFlush).get(FLUSH_WAIT_TIMEOUT_SECONDS, TimeUnit.SECONDS);
} catch (InterruptedException | ExecutionException | TimeoutException e) {
throw new RuntimeException(e);
System.err.println("ERROR: flush failure: " + e);
}
}

Expand Down

0 comments on commit 1adf867

Please sign in to comment.