Author: ron.sigal(a)jboss.com
Date: 2008-05-10 23:32:10 -0400 (Sat, 10 May 2008)
New Revision: 4170
Modified:
remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/http/keep_alive/StressHTTPInvokerTestCase.java
remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/http/keep_alive/StressHTTPInvokerTestClient.java
Log:
JBREM-979: Additional logging.
Modified:
remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/http/keep_alive/StressHTTPInvokerTestCase.java
===================================================================
---
remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/http/keep_alive/StressHTTPInvokerTestCase.java 2008-05-11
03:18:29 UTC (rev 4169)
+++
remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/http/keep_alive/StressHTTPInvokerTestCase.java 2008-05-11
03:32:10 UTC (rev 4170)
@@ -45,7 +45,7 @@
protected Level getTestLogLevel()
{
- return Level.INFO;
+ return Level.DEBUG;
}
/**
Modified:
remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/http/keep_alive/StressHTTPInvokerTestClient.java
===================================================================
---
remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/http/keep_alive/StressHTTPInvokerTestClient.java 2008-05-11
03:18:29 UTC (rev 4169)
+++
remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/http/keep_alive/StressHTTPInvokerTestClient.java 2008-05-11
03:32:10 UTC (rev 4170)
@@ -22,6 +22,7 @@
package org.jboss.test.remoting.transport.http.keep_alive;
+import org.jboss.remoting.transport.http.HTTPClientInvoker;
import org.jboss.test.remoting.performance.synchronous.PerformanceTestCase;
import org.jboss.test.remoting.transport.http.HTTPInvokerConstants;
import org.jboss.test.remoting.transport.web.WebInvokerTestClient;
@@ -35,11 +36,13 @@
{
String bindAddr = System.getProperty("jrunit.bind_addr", host);
String locatorURI = transport + "://" + bindAddr + ":" + port;
+ locatorURI += "/?" + HTTPClientInvoker.NUMBER_OF_CALL_ATTEMPTS +
"=3";
String metadata = System.getProperty(PerformanceTestCase.REMOTING_METADATA);
if(metadata != null && metadata.length() > 0)
{
- locatorURI = locatorURI + "/?" + metadata;
+ locatorURI = locatorURI + "&" + metadata;
}
+ log.info("connecting to: " + locatorURI);
return locatorURI;
}
Show replies by date