jdeppe-pivotal commented on a change in pull request #5185: URL: https://github.com/apache/geode/pull/5185#discussion_r432757057
########## File path: geode-redis/src/main/java/org/apache/geode/redis/internal/ExecutionHandlerContext.java ########## @@ -196,22 +197,26 @@ public void channelInactive(ChannelHandlerContext ctx) { private void executeCommand(ChannelHandlerContext ctx, Command command) throws Exception { RedisResponse response; - if (isAuthenticated) { - if (command.isOfType(RedisCommandType.SHUTDOWN)) { - this.server.shutdown(); - return; - } - response = command.execute(this); + if (command.isOfType(RedisCommandType.SHUTDOWN)) { Review comment: Good catch. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org