Author: kmarsden
Date: Wed Mar 10 02:35:46 2010
New Revision: 921211
URL: http://svn.apache.org/viewvc?rev=921211&view=rev
Log:
DERBY -4564 Replication tests do not pick up derby.tests.networkServerStartTimeout setting
fix replication tests to use property as seconds, not milliseconds.
Modified:
db/derby/code/branches/10.5/ (props changed)
db/derby/code/branches/10.5/java/testing/org/apache/derbyTesting/functionTests/tests/replicationTests/ReplicationRun.java
Propchange: db/derby/code/branches/10.5/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Wed Mar 10 02:35:46 2010
@@ -1 +1 @@
-/db/derby/code/trunk:769596,769602,769606,769962,772090,772337,772449,772534,774281,777105,779681,782991,785131,785139,785163,785570,785662,788369,788670,788674,788968,789264,790218,792434,793089,793588,794106,794303,794955,795166,796020,796027,796316,796372,797147,798347,798742,800523,803548,803948,805696,808494,808850,809643,810860,812669,816531,816536,819006,822289,823659,824694,829022,832379,833430,835286,881074,881444,882732,884163,887246,892912,897161,901165,901648,901760,903108,911315,915733,916075,916897
+/db/derby/code/trunk:769596,769602,769606,769962,772090,772337,772449,772534,774281,777105,779681,782991,785131,785139,785163,785570,785662,788369,788670,788674,788968,789264,790218,792434,793089,793588,794106,794303,794955,795166,796020,796027,796316,796372,797147,798347,798742,800523,803548,803948,805696,808494,808850,809643,810860,812669,816531,816536,819006,822289,823659,824694,829022,832379,833430,835286,881074,881444,882732,884163,887246,892912,897161,901165,901648,901760,903108,911315,915733,916075,916897,921028
Modified: db/derby/code/branches/10.5/java/testing/org/apache/derbyTesting/functionTests/tests/replicationTests/ReplicationRun.java
URL: http://svn.apache.org/viewvc/db/derby/code/branches/10.5/java/testing/org/apache/derbyTesting/functionTests/tests/replicationTests/ReplicationRun.java?rev=921211&r1=921210&r2=921211&view=diff
==============================================================================
--- db/derby/code/branches/10.5/java/testing/org/apache/derbyTesting/functionTests/tests/replicationTests/ReplicationRun.java
(original)
+++ db/derby/code/branches/10.5/java/testing/org/apache/derbyTesting/functionTests/tests/replicationTests/ReplicationRun.java
Wed Mar 10 02:35:46 2010
@@ -2453,7 +2453,7 @@ public class ReplicationRun extends Base
// DERBY-4564. Make replication tests use derby.tests.networkServerTimeout proeprty
String userStartTimeout = getSystemProperty("derby.tests.networkServerStartTimeout");
long startTimeout = (userStartTimeout != null )?
- Long.parseLong(userStartTimeout): DEFAULT_SERVER_START_TIMEOUT;
+ (Long.parseLong(userStartTimeout) * 1000): DEFAULT_SERVER_START_TIMEOUT;
long iterations = startTimeout / PINGSERVER_SLEEP_TIME_MILLIS;
util.DEBUG(debugId+"************** Do .start().");
serverThread.start();
|