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 2008/10/07 16:15:23 UTC

svn commit: r702489 - /ofbiz/trunk/framework/start/src/org/ofbiz/base/start/Start.java

Author: jleroux
Date: Tue Oct  7 07:15:21 2008
New Revision: 702489

URL: http://svn.apache.org/viewvc?rev=702489&view=rev
Log:
There was a problem to stop on Linux using for instance ./stopofbiz.sh. 
Ray suggested this change. 
I checked in history (Fisheye see line 582 http://fisheye6.atlassian.com/browse/ofbiz/trunk/framework/start/src/org/ofbiz/base/start/Start.java?r1=691771&r2=697866) and tested on Ubuntu 8.04 : works well.

Modified:
    ofbiz/trunk/framework/start/src/org/ofbiz/base/start/Start.java

Modified: ofbiz/trunk/framework/start/src/org/ofbiz/base/start/Start.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/start/src/org/ofbiz/base/start/Start.java?rev=702489&r1=702488&r2=702489&view=diff
==============================================================================
--- ofbiz/trunk/framework/start/src/org/ofbiz/base/start/Start.java (original)
+++ ofbiz/trunk/framework/start/src/org/ofbiz/base/start/Start.java Tue Oct  7 07:15:21 2008
@@ -561,7 +561,7 @@
             String adminPortStr = getProp(props, "ofbiz.admin.port", "0");
 
             // set the admin key
-            String adminKey = getProp(props, "ofbiz.admin.key", "NA");
+            adminKey = getProp(props, "ofbiz.admin.key", "NA");
 
             // create the host InetAddress
             adminAddress = InetAddress.getByName(serverHost);