Why is the workflow definition in the DSL sample project deterministic?

Hi, I’m currently taking the Temporal 102 course, and it mentions that workflow definitions must be deterministic. However, the workflow in the Python DSL sample appears to me to be non-deterministic in the following part:

        elif isinstance(stmt, ParallelStatement):
            await asyncio.gather(
                *[self.execute_statement(branch) for branch in stmt.parallel.branches]
            )

Couldn’t this potentially generate commands in a different order?

I need this ParallelStatement feature for my intepreter DSL workflow

Thanks!

It is deterministic as Temporal uses a custom async io loop:

1 Like

Thank you, Maxim!