We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d2d6f7 commit f433905Copy full SHA for f433905
subprojects/parseq-guava-interop/src/main/java/com/linkedin/parseq/guava/ListenableFutureUtil.java
@@ -47,7 +47,7 @@ public boolean cancel(Exception rootReason) {
47
if (shouldCancelTask && !future.isCancelled()) {
48
boolean futureCancelResult = future.cancel(true);
49
if (!futureCancelResult) {
50
- LOGGER.warn("Unexpected: ListenableFuture was not cancelled but new attempt to cancel also failed.");
+ LOGGER.warn("Unexpected: Listenable future was not cancelled but new attempt to cancel also failed.");
51
}
52
53
return shouldCancelTask;
0 commit comments