You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Today we wake up all wait conditions that are satisfied at the same time. This doesn't allow you to guarantee the condition is true on the line after the wait condition. We should only wake up a single wait condition when satisfied and then run the entire loop again. This will allow you to implement things like:
Describe the solution you'd like
Today we wake up all wait conditions that are satisfied at the same time. This doesn't allow you to guarantee the condition is true on the line after the wait condition. We should only wake up a single wait condition when satisfied and then run the entire loop again. This will allow you to implement things like:
I believe this issue is similar to temporalio/sdk-python#618 in Python. And would require an SDK flag.
The text was updated successfully, but these errors were encountered: