Remove unnecessary check causing failures
authorMathieu Baudier <mbaudier@argeo.org>
Thu, 12 Feb 2015 11:43:41 +0000 (11:43 +0000)
committerMathieu Baudier <mbaudier@argeo.org>
Thu, 12 Feb 2015 11:43:41 +0000 (11:43 +0000)
git-svn-id: https://svn.argeo.org/slc/trunk@7802 4cfe0d0a-d680-48aa-b62c-e0a02a3f76cc

runtime/org.argeo.slc.core/src/main/java/org/argeo/slc/core/execution/tasks/SystemCall.java

index d4093ad58ee05b021f3a06b28dee5fd4fb5f45d9..04da5242f41556d93ff439f371cec4578e6847b1 100644 (file)
@@ -624,8 +624,8 @@ public class SystemCall implements Runnable {
        }
 
        private synchronized ExecuteWatchdog createWatchdog() {
-               if (currentWatchdog != null)
-                       throw new SlcException("A process is already being monitored");
+//             if (currentWatchdog != null)
+//                     throw new SlcException("A process is already being monitored");
                currentWatchdog = new ExecuteWatchdog(watchdogTimeout);
                return currentWatchdog;
        }