class documentation

class DynamicWorkflowConfig: (source)

View In Hierarchy

Returned by functions using the dynamic_config decorator, see it for more.

Class Variable failure_exception_types The types of exceptions that, if a workflow-thrown exception extends, will cause the workflow/update to fail instead of suspending the workflow via task failure. These are applied in addition to ones set on the worker constructor...
failure_exception_types: Sequence[type[BaseException]] | None = (source) ΒΆ

The types of exceptions that, if a workflow-thrown exception extends, will cause the workflow/update to fail instead of suspending the workflow via task failure. These are applied in addition to ones set on the worker constructor. If Exception is set, it effectively will fail a workflow/update in all user exception cases.

Always overrides the equivalent parameter on defn if set not-None.

WARNING: This setting is experimental.