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 2015/03/25 13:31:58 UTC

svn commit: r1669103 - /uima/sandbox/uima-ducc/trunk/uima-ducc-common/src/main/java/org/apache/uima/ducc/common/jd/files/workitem/WorkItemStateKeeper.java

Author: degenaro
Date: Wed Mar 25 12:31:58 2015
New Revision: 1669103

URL: http://svn.apache.org/r1669103
Log:
UIMA-4306 DUCC Job Driver (JD) not flushing info to disk for investment reset

Modified:
    uima/sandbox/uima-ducc/trunk/uima-ducc-common/src/main/java/org/apache/uima/ducc/common/jd/files/workitem/WorkItemStateKeeper.java

Modified: uima/sandbox/uima-ducc/trunk/uima-ducc-common/src/main/java/org/apache/uima/ducc/common/jd/files/workitem/WorkItemStateKeeper.java
URL: http://svn.apache.org/viewvc/uima/sandbox/uima-ducc/trunk/uima-ducc-common/src/main/java/org/apache/uima/ducc/common/jd/files/workitem/WorkItemStateKeeper.java?rev=1669103&r1=1669102&r2=1669103&view=diff
==============================================================================
--- uima/sandbox/uima-ducc/trunk/uima-ducc-common/src/main/java/org/apache/uima/ducc/common/jd/files/workitem/WorkItemStateKeeper.java (original)
+++ uima/sandbox/uima-ducc/trunk/uima-ducc-common/src/main/java/org/apache/uima/ducc/common/jd/files/workitem/WorkItemStateKeeper.java Wed Mar 25 12:31:58 2015
@@ -174,6 +174,7 @@ public class WorkItemStateKeeper extends
 			Long key = new Long(seqNo);
 			IWorkItemState wis = activeMap.get(key);
 			wis.investmentReset();
+			record(wis);
 			State state = wis.getState();
 			logger.debug(location, jobid, "seqNo:"+seqNo+" "+state.name());
 		}