Skip to content

Commit a23d701

Browse files
committed
avoiding clog submissions
1 parent 48ea180 commit a23d701

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

qiita_db/processing_job.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1636,6 +1636,9 @@ def _update_and_launch_children(self, mapping):
16361636
# Submit all the children that already have all the input parameters
16371637
for c in ready:
16381638
c.submit()
1639+
# some jobs create several children jobs/validators and this can
1640+
# clog the submission process; giving it a second to avoid this
1641+
sleep(1)
16391642

16401643
@property
16411644
def outputs(self):

0 commit comments

Comments
 (0)