We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61c1f28 commit 62527e0Copy full SHA for 62527e0
cylc/flow/xtrigger_mgr.py
@@ -31,7 +31,7 @@
31
)
32
33
from cylc.flow import LOG
34
-from cylc.flow.exceptions import XtriggerConfigError
+from cylc.flow.exceptions import WorkflowConfigError, XtriggerConfigError
35
import cylc.flow.flags
36
from cylc.flow.hostuserutil import get_user
37
from cylc.flow.subprocctx import add_kwarg_to_sig
@@ -362,6 +362,8 @@ def _try_xtrig_validate_func(
362
try:
363
xtrig_validate_func(bound_args.arguments)
364
except Exception as exc: # Note: catch all errors
365
+ if not isinstance(exc, WorkflowConfigError):
366
+ LOG.exception(exc)
367
raise XtriggerConfigError(label, signature_str, exc)
368
369
# BACK COMPAT: workflow_state_backcompat
0 commit comments