Skip to content

Commit

Permalink
Fix ConsumerHandler in WebSocket Proxy (apache#875)
Browse files Browse the repository at this point in the history
  • Loading branch information
yush1ga authored and hrsakai committed Nov 1, 2017
1 parent 5a4dd11 commit 9f63fa7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public ConsumerHandler(WebSocketService service, HttpServletRequest request, Ser

private void receiveMessage() {
if (log.isDebugEnabled()) {
log.debug("[{}] [{}] [{}] Receive next message", getSession().getRemoteAddress(), topic, subscription);
log.debug("[{}:{}] [{}] [{}] Receive next message", request.getRemoteAddr(), request.getRemotePort(), topic, subscription);
}

consumer.receiveAsync().thenAccept(msg -> {
Expand Down

0 comments on commit 9f63fa7

Please sign in to comment.