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
The current executingStateIds is too expensive when setting the SA value for every state -- where most states don't have waitUntil and will get passed very quickly.
Mostly, 99% the cases, people only need it when a state has a waitUntil.
This will be very handy to find the states that are waiting on something. Knowing these states will help removing the code.
Ideally, the options to provide to client (via WorkflowConfig)
Enable it for any state (even doesn't have waitUntil)
Enable it only for state that has waitUntil (preferred as default)
Disable (right now this is default for internal)
The text was updated successfully, but these errors were encountered:
longquanzheng
changed the title
Allow enable executing state id system search attributes for state with wait until only
Enable executing state id system search attributes for state with wait until only
Sep 11, 2024
longquanzheng
changed the title
Enable executing state id system search attributes for state with wait until only
Enable executingSateIds system search attributes for only states that have waitUntil
Sep 11, 2024
lwolczynski
changed the title
Enable executingSateIds system search attributes for only states that have waitUntil
Enable executingStateIds system search attributes for only states that have waitUntil
Oct 15, 2024
The current
executingStateIds
is too expensive when setting the SA value for every state -- where most states don't havewaitUntil
and will get passed very quickly.Mostly, 99% the cases, people only need it when a state has a
waitUntil
.This will be very handy to find the states that are waiting on something. Knowing these states will help removing the code.
Ideally, the options to provide to client (via WorkflowConfig)
The text was updated successfully, but these errors were encountered: