You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
print('No task matching '+args.rerun_from+' found; cowardly refusing to do anything ')
761
+
exit (1)
758
762
759
763
# *****************
760
764
# main control loop
@@ -784,7 +788,7 @@ def execute(self):
784
788
self.monitor(self.process_list) # ---> make async to normal operation?
785
789
time.sleep(1) # <--- make this incremental (small wait at beginning)
786
790
else:
787
-
time.sleep(0.01)
791
+
time.sleep(0.001)
788
792
789
793
finished=finished+finished_from_started
790
794
actionlogger.debug("finished now :"+str(finished_from_started))
@@ -831,7 +835,7 @@ def execute(self):
831
835
This condition is used as logical AND together with --target-tasks.', default=[])
832
836
parser.add_argument('-tt','--target-tasks', nargs='+', help='Runs the pipeline by target tasks (example "tpcdigi"). By default everything in the graph is run. Regular expressions supported.', default=["*"])
833
837
parser.add_argument('--produce-script', help='Produces a shell script that runs the workflow in serialized manner and quits.')
834
-
parser.add_argument('--rerun-from', help='Reruns the workflow starting from given task. All dependent jobs will be rerun.')
838
+
parser.add_argument('--rerun-from', help='Reruns the workflow starting from given task (or pattern). All dependent jobs will be rerun.')
835
839
parser.add_argument('--list-tasks', help='Simply list all tasks by name and quit.', action='store_true')
836
840
837
841
parser.add_argument('--mem-limit', help='Set memory limit as scheduling constraint', default=max_system_mem)
0 commit comments