We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 981b151 commit 38285c2Copy full SHA for 38285c2
ex_app/lib/nc_model.py
@@ -96,8 +96,8 @@ def _generate(
96
log(nc, LogLvl.DEBUG, task)
97
98
i = 0
99
- # wait for 5 seconds * 60 * 2 = 10 minutes (one i ^= 5 sec)
100
- while task.status != "STATUS_SUCCESSFUL" and task.status != "STATUS_FAILED" and i < 60 * 2:
+ # wait for 5 seconds * 60 * 4 = 20 minutes (one i ^= 5 sec)
+ while task.status != "STATUS_SUCCESSFUL" and task.status != "STATUS_FAILED" and i < 60 * 4:
101
time.sleep(5)
102
i += 1
103
try:
0 commit comments