Ilya Sapunov
06/07/2022, 11:45 AMwith Flow("import") as flow:
for i in range(5):
res = import_task(
command="echo $CREDENTIALS",
env={
"CREDENTIALS": str(i)
},
)
But in that case all tasks will run in parallel, which will cause the request limits to be exceeded
Can I run those tasks sequentially ?Anna Geller
06/07/2022, 11:59 AM