Author: pferraro
Date: 2009-05-18 18:02:04 -0400 (Mon, 18 May 2009)
New Revision: 2440
Modified:
trunk/mod_cluster/src/demo/java/org/jboss/modcluster/demo/servlet/BusyConnectorsLoadServlet.java
Log:
Disable auto redirect following, to allow circular redirect
Modified:
trunk/mod_cluster/src/demo/java/org/jboss/modcluster/demo/servlet/BusyConnectorsLoadServlet.java
===================================================================
---
trunk/mod_cluster/src/demo/java/org/jboss/modcluster/demo/servlet/BusyConnectorsLoadServlet.java 2009-05-18
21:45:14 UTC (rev 2439)
+++
trunk/mod_cluster/src/demo/java/org/jboss/modcluster/demo/servlet/BusyConnectorsLoadServlet.java 2009-05-18
22:02:04 UTC (rev 2440)
@@ -118,7 +118,6 @@
public void run()
{
HttpClient client = new HttpClient();
-
String url = this.url;
try
@@ -126,6 +125,8 @@
while (url != null)
{
HttpMethod method = new HeadMethod(url);
+ // Disable auto redirect following, to allow circular redirect
+ method.setFollowRedirects(false);
int code = client.executeMethod(method);
Show replies by date