What does this option mean for tomcat. The following was declared in server.xml :
<Connector connectionTimeout="20000" port="8080" protocol="HTTP/1.1" redirectPort="8443"/>
So, I tried to change it
<Connector connectionTimeout="2" port="8080" protocol="HTTP/1.1" redirectPort="8443"/>
and did not notice any effect. I expected that every page on which loading of more than 2 milliseconds is loaded will result in a 504 timeout error. But that is not the case. I use eclipse and modify this file through it.
source share