From 04c6bde9a98268a87edd86e01d9cfd6c206e2e52 Mon Sep 17 00:00:00 2001 From: Gerd Behrmann Date: Wed, 12 Oct 2016 12:40:46 +0200 Subject: [PATCH] xrootd4j: Propagate channel activation event Fixes a regression in which a channel activation event was not propagated in the pipeline. Target: master, 3.2 Acked-by: Olufemi Adeyemi Reviewed at https://rb.dcache.org/r/9834/ --- .../main/java/org/dcache/xrootd/core/XrootdRequestHandler.java | 1 + 1 file changed, 1 insertion(+) diff --git a/xrootd4j/src/main/java/org/dcache/xrootd/core/XrootdRequestHandler.java b/xrootd4j/src/main/java/org/dcache/xrootd/core/XrootdRequestHandler.java index 806b1897..9269de35 100644 --- a/xrootd4j/src/main/java/org/dcache/xrootd/core/XrootdRequestHandler.java +++ b/xrootd4j/src/main/java/org/dcache/xrootd/core/XrootdRequestHandler.java @@ -89,6 +89,7 @@ public void channelActive(ChannelHandlerContext ctx) throws Exception { _destinationAddress = (InetSocketAddress) ctx.channel().localAddress(); _sourceAddress = (InetSocketAddress) ctx.channel().remoteAddress(); + super.channelActive(ctx); } @Override