You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by de...@apache.org on 2014/04/30 19:01:13 UTC

svn commit: r1591396 - /uima/sandbox/uima-ducc/trunk/uima-ducc-web/src/main/java/org/apache/uima/ducc/ws/server/DuccHandler.java

Author: degenaro
Date: Wed Apr 30 17:01:12 2014
New Revision: 1591396

URL: http://svn.apache.org/r1591396
Log:
UIMA-3777 Agent should not change process exit code (and WebServer should NOT suppress display of exit code when Reason Scheduler is Voluntary or Forced or Stopped)

Modified:
    uima/sandbox/uima-ducc/trunk/uima-ducc-web/src/main/java/org/apache/uima/ducc/ws/server/DuccHandler.java

Modified: uima/sandbox/uima-ducc/trunk/uima-ducc-web/src/main/java/org/apache/uima/ducc/ws/server/DuccHandler.java
URL: http://svn.apache.org/viewvc/uima/sandbox/uima-ducc/trunk/uima-ducc-web/src/main/java/org/apache/uima/ducc/ws/server/DuccHandler.java?rev=1591396&r1=1591395&r2=1591396&view=diff
==============================================================================
--- uima/sandbox/uima-ducc/trunk/uima-ducc-web/src/main/java/org/apache/uima/ducc/ws/server/DuccHandler.java (original)
+++ uima/sandbox/uima-ducc/trunk/uima-ducc-web/src/main/java/org/apache/uima/ducc/ws/server/DuccHandler.java Wed Apr 30 17:01:12 2014
@@ -511,6 +511,7 @@ public class DuccHandler extends DuccAbs
 		index++; // jp.09
 		cbList[index].append("<td>");
 		boolean suppressExitCode = false;
+		/*
 		ProcessDeallocationType deallocationType = process.getProcessDeallocationType();
 		switch(deallocationType) {
 		case Forced:
@@ -519,6 +520,7 @@ public class DuccHandler extends DuccAbs
 			suppressExitCode = true;
 			break;
 		}
+		*/
 		if(!suppressExitCode) {
 			switch(process.getProcessState()) {
 			case Stopped: