Skip to content
Merged
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,9 @@ private static MethodHandle lookupBackpressureWindowTimeoutOperator() {
return MethodHandles.publicLookup().findVirtual(Flux.class, WINDOW_TIMEOUT_OPERATOR,
MethodType.methodType(Flux.class, int.class, Duration.class, boolean.class));
} catch (IllegalAccessException | NoSuchMethodException err) {
LOGGER.verbose("Failed to retrieve MethodHandle for backpressure aware windowTimeout Reactor operator.", err);
LOGGER.verbose("Failed to retrieve MethodHandle for backpressure aware windowTimeout Reactor operator. "
+ "Falling back to non-backpressure aware operator instead. "
+ "Please update Reactor dependency to at least version 3.4.19.", err);
}
return null;
}
Expand Down