We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
swf.executor maps a timeout event to a TimeoutError object that does not have a reason attribute. If the task has the flag raises_on_failure enabled, swf.Executor.resume() will wrap the TimeoutError in a TaskException. It then raises in swf.Executor.replay() that logs a message. It fails to make the message from the reason attribute.
swf.executor
TimeoutError
reason
raises_on_failure
swf.Executor.resume()
TaskException
swf.Executor.replay()
The text was updated successfully, but these errors were encountered:
Update exceptions #13: add attribute task to TaskException
adb63b1
Update swf.executor #13: use TaskException.task.name instead of reaso…
9c16046
…n attribute
ggreg
Successfully merging a pull request may close this issue.
swf.executor
maps a timeout event to aTimeoutError
object that does not have areason
attribute. If the task has the flagraises_on_failure
enabled,swf.Executor.resume()
will wrap theTimeoutError
in aTaskException
. It then raises inswf.Executor.replay()
that logs a message. It fails to make the message from thereason
attribute.The text was updated successfully, but these errors were encountered: