You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: hystrix-core/src/main/java/com/netflix/hystrix/HystrixCollapser.java
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -610,6 +610,10 @@ public void shutdown() {
610
610
*/
611
611
for (CollapsedRequest<ResponseType, RequestArgumentType> request : requests) {
612
612
request.setException(newIllegalStateException("Requests not executed before shutdown."));
613
+
/**
614
+
* https://github.com/Netflix/Hystrix/issues/78 Include more info when collapsed requests remain in queue
615
+
*/
616
+
logger.warn("Request still in queue but not be executed due to RequestCollapser shutdown. Argument => " + request.getArgument() + " Request Object => " + request, newIllegalStateException());
613
617
}
614
618
} catch (Exceptione) {
615
619
logger.error("Failed to setException on CollapsedRequestFutureImpl instances.", e);
0 commit comments