Author: jleroux
Date: Thu Sep 26 14:58:47 2013
New Revision: 1526533
URL:
http://svn.apache.org/r1526533Log:
Set different ports for testing in a CI environment (e.g. Jenkins)
https://issues.apache.org/jira/browse/OFBIZ-4794Complete previous work because of INFRA-6790
Modified:
ofbiz/trunk/framework/start/src/org/ofbiz/base/start/Config.java
Modified: ofbiz/trunk/framework/start/src/org/ofbiz/base/start/Config.java
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/framework/start/src/org/ofbiz/base/start/Config.java?rev=1526533&r1=1526532&r2=1526533&view=diff==============================================================================
--- ofbiz/trunk/framework/start/src/org/ofbiz/base/start/Config.java (original)
+++ ofbiz/trunk/framework/start/src/org/ofbiz/base/start/Config.java Thu Sep 26 14:58:47 2013
@@ -355,6 +355,7 @@ public class Config {
if (args.length > 0) {
for (String arg : args) {
if (arg.toLowerCase().contains("portoffset=")) {
+ adminPort = adminPort != 0 ? adminPort : 10523; // This is necessary because the ASF Buildbot machine/s doe/s not allow ports 1 to 3, see INFRA-6790
adminPort += Integer.parseInt(arg.split("=")[1]);
}
}