Skip to content
This repository was archived by the owner on Aug 15, 2024. It is now read-only.

Commit 92724c1

Browse files
committed
fix: wait 30 second before submitting jobs
In some cases, jobs are submitted before workers are ready.
1 parent 61cbe68 commit 92724c1

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

psom_manager.m

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,9 @@
9898
error('Could not find the pipeline file %s. Please use psom_run_pipeline instead of psom_manager directly.',file_jobs);
9999
end
100100

101+
% pause for ten second in case workers are not ready yet.
102+
pause(30);
103+
101104
% a try/catch block is used to clean temporary file if the user is
102105
% interrupting the pipeline of if an error occurs
103106
try

0 commit comments

Comments
 (0)