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
{{ message }}
This repository was archived by the owner on Apr 12, 2018. It is now read-only.
The way simple-workflow lookups the name of event types is non-deterministic. It iterates of the keys of the EVENTS dict. There is no guaranty in the order of keys in a Python dict, that's why there is a collections.OrderedDict class. Thus when it encounters a StartChildWorkflowExecutionInitiated event it either returns a ChildWorkflowExecution or a WorkflowExecution type. I had the two cases by executing code with CPython2.7 (returns WorkflowExecution) and pypy 2.5.0 (returns ChildWorkflowExecution), though of course it depends on the environment and not on the interpreter itself (even CPython2.7 dict may iterate keys on a different order).
The text was updated successfully, but these errors were encountered:
The way simple-workflow lookups the name of event types is non-deterministic. It iterates of the keys of the
EVENTS
dict. There is no guaranty in the order of keys in a Python dict, that's why there is acollections.OrderedDict
class. Thus when it encounters aStartChildWorkflowExecutionInitiated
event it either returns aChildWorkflowExecution
or aWorkflowExecution
type. I had the two cases by executing code with CPython2.7 (returnsWorkflowExecution
) and pypy 2.5.0 (returnsChildWorkflowExecution
), though of course it depends on the environment and not on the interpreter itself (even CPython2.7 dict may iterate keys on a different order).The text was updated successfully, but these errors were encountered: