Author: mattmann
Date: Tue Mar 19 22:59:45 2013
New Revision: 1458561

URL: http://svn.apache.org/r1458561
Log:
fix for OODT-578: Workflow Monitor experiences runtime exception (NPE) out of 
the box with RADIX contributed by Arni Sumarlidason.

Modified:
    oodt/trunk/CHANGES.txt
    
oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/distribution/src/main/resources/bin/env.sh

Modified: oodt/trunk/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/oodt/trunk/CHANGES.txt?rev=1458561&r1=1458560&r2=1458561&view=diff
==============================================================================
--- oodt/trunk/CHANGES.txt (original)
+++ oodt/trunk/CHANGES.txt Tue Mar 19 22:59:45 2013
@@ -3,6 +3,9 @@ Apache OODT Change Log
 Release 0.6 - Current Development
 --------------------------------------------
 
+* OODT-578 Workflow Monitor experiences runtime exception (NPE) out 
+  of the box with RADIX (Arni Sumarlidason via mattmann)
+
 * OODT-575 Metadata extractor for parsing filename based on regex 
   (Nga Chung via mattmann)
 

Modified: 
oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/distribution/src/main/resources/bin/env.sh
URL: 
http://svn.apache.org/viewvc/oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/distribution/src/main/resources/bin/env.sh?rev=1458561&r1=1458560&r2=1458561&view=diff
==============================================================================
--- 
oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/distribution/src/main/resources/bin/env.sh
 (original)
+++ 
oodt/trunk/mvn/archetypes/radix/src/main/resources/archetype-resources/distribution/src/main/resources/bin/env.sh
 Tue Mar 19 22:59:45 2013
@@ -87,10 +87,12 @@ fi
 
 if [ -z "$OODT_BASE" ]; then
   OODT_BASE="$OODT_HOME"
+  export OODT_BASE
 fi
 
 if [ -z "$OODT_OUT" ] ; then
   OODT_OUT="$OODT_BASE"/logs/oodt.out
+  export OODT_OUT
 fi
 
 if [ -z "$FILEMGR_HOME" ]; then
@@ -111,30 +113,37 @@ fi
 if [ -z "$OODT_TMPDIR" ]; then
   # Define the java.io.tmpdir to use for OODT
   OODT_TMPDIR="$OODT_BASE"/temp
+  export OODT_TMPDIR
 fi
 
 if [ -z "$FILEMGR_PORT" ]; then
   FILEMGR_PORT=9000
+  export FILEMGR_PORT
 fi
 
 if [ -z "$CRAWLER_PORT" ]; then
   CRAWLER_PORT=9100
+  export CRAWLER_PORT
 fi 
 
 if [ -z "$WORKFLOW_PORT" ]; then
   WORKFLOW_PORT=9200
+  export WORKFLOW_PORT
 fi
 
 if [ -z "$RESMGR_PORT" ]; then
   RESMGR_PORT=9300
+  export RESMGR_PORT
 fi
 
 if [ -z "$TOMCAT_PORT" ]; then
   TOMCAT_PORT=8080
+  export TOMCAT_PORT
 fi
 
 if [ -z "$OODT_SERVICES_HOST" ]; then
   OODT_SERVICES_HOST=localhost
+  export OODT_SERVICES_HOST
 fi
 
 if [ -z "$FILEMGR_URL" ]; then


Reply via email to