Use queuecommands.run not queuecommands.start_job to actually
authorDiane Trout <diane@caltech.edu>
Thu, 18 Sep 2008 23:28:58 +0000 (23:28 +0000)
committerDiane Trout <diane@caltech.edu>
Thu, 18 Sep 2008 23:28:58 +0000 (23:28 +0000)
wait to launch additional processes

scripts/srf

index 5c3b7e9ec0ce76e8c532dce85b55dd65d0aed4f4..240cc8e9d2636477752bf2352d3aaf8b4301618d 100644 (file)
@@ -151,7 +151,7 @@ def main(cmdline=None):
         curdir = os.getcwd()
         os.chdir(cwd)
         q = queuecommands.QueueCommands(cmd_list, opts.jobs)
-        q.start_jobs()
+        q.run()
         os.chdir(curdir)
     else:
       for cwd, cmd_list in cmds.items():