Skip to content

Commit bbf8e71

Browse files
authored
Update ListenableFutureUtil.java with log message (#352)
1 parent ae967ef commit bbf8e71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

subprojects/parseq-guava-interop/src/main/java/com/linkedin/parseq/guava/ListenableFutureUtil.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public boolean cancel(Exception rootReason) {
4747
if (shouldCancelTask && !future.isCancelled()) {
4848
boolean futureCancelResult = future.cancel(true);
4949
if (!futureCancelResult) {
50-
LOGGER.warn("Unexpected: GRPC future was not cancelled but new attempt to cancel also failed.");
50+
LOGGER.warn("Unexpected: Listenable future was not cancelled but new attempt to cancel also failed.");
5151
}
5252
}
5353
return shouldCancelTask;

0 commit comments

Comments
 (0)