You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jl...@apache.org on 2012/04/12 18:40:40 UTC

svn commit: r1325369 - /ofbiz/trunk/framework/start/src/org/ofbiz/base/start/Config.java

Author: jleroux
Date: Thu Apr 12 16:40:40 2012
New Revision: 1325369

URL: http://svn.apache.org/viewvc?rev=1325369&view=rev
Log:
Finally revert to previous values, in order to avoid possible confusion with values in properties file

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=1325369&r1=1325368&r2=1325369&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 Apr 12 16:40:40 2012
@@ -342,9 +342,9 @@ public class Config {
         // get the admin server info
         String serverHost = getProp(props, "ofbiz.admin.host", "127.0.0.1");
 
-        String adminPortStr = getProp(props, "ofbiz.admin.port", "10523");
+        String adminPortStr = getProp(props, "ofbiz.admin.port", "0");
         // set the admin key
-        adminKey = getProp(props, "ofbiz.admin.key", "so3du5kasd5dn");
+        adminKey = getProp(props, "ofbiz.admin.key", "NA");
 
         // create the host InetAddress
         adminAddress = InetAddress.getByName(serverHost);