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 Sep 2, 2021. It is now read-only.
`CallbackModule` add required methods (#79)
In case these methos are not implemented and are called by gluetool, `CallbackModule` returns
`MagicMock` object, it is handled as failure (because it is not `None`) and pipeline fails.
Propagate `check` return type to `wait()` (#76)
Given that wait() returns what `check` callback returned, we can
propagate callbacks return value - wrapped by `Result` - to return
value of `wait()`, it must be the same type.
Simplify pipeline handling of execute and destroy (#74)
It was way too complicated. Using _safe_call and extra helper for
logging of failures simplifies the relevant code a lot, making it more
streamlined and readable.
This also fixes re-submission of failures to the Sentry which
effectively reset failures' Sentry event ID after some point of
workflow.