malaysf commented on a change in pull request #332: URL: https://github.com/apache/tomcat/pull/332#discussion_r466173546
########## File path: java/org/apache/coyote/AbstractProtocol.java ########## @@ -262,6 +267,18 @@ public void setConnectionLinger(int connectionLinger) { endpoint.setConnectionLinger(connectionLinger); } + // ------------------------------------------------ HTTP specific properties + // ----------------------------------------- queried by StandardContextValve + public void setContinueHandlingResponsePolicy(String value) { + continueHandlingResponsePolicy = Enum.valueOf(ContinueHandlingResponsePolicy.class, value); + } + + + //todo(malay) move to AbstractProtocol Review comment: sorry, that was a note to myself that I missed removing ---------------------------------------------------------------- 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 --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org