Files
gyxx-flow/src/gyxx_flow/core/exit_codes.py
T

14 lines
431 B
Python

"""Reserved process exit codes shared by framework and runtime adapters."""
COOKIE_SKIP_EXIT_CODE = 75
IDEMPOTENT_REPLAY_EXIT_CODE = 76
# The child produced a deterministic validation/data-identity failure. Callers
# must surface it without blindly re-running the same browser side effect.
NON_RETRYABLE_EXIT_CODE = 77
__all__ = [
"COOKIE_SKIP_EXIT_CODE",
"IDEMPOTENT_REPLAY_EXIT_CODE",
"NON_RETRYABLE_EXIT_CODE",
]