narrow-secretary-95110
10/23/2023, 11:34 AM...
@step
def schedule_workers(self):
    worker_inputs = [...]
    self.next(self.run_worker, foreach='worker_inputs')
@catch(var='timeout')
@retry(times=0)
@timeout(seconds=3600)
@step
def run_worker(self):
    ...
...