Skip to content

Commit

Permalink
Merge pull request #423 from meeseeksmachine/auto-backport-of-pr-422-…
Browse files Browse the repository at this point in the history
…on-5.x

Backport PR #422 on branch 5.x (Clarify stop_on_error documentation.)
  • Loading branch information
minrk authored Mar 5, 2019
2 parents ed4716e + 36cfaf4 commit f25136a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/messaging.rst
Original file line number Diff line number Diff line change
Expand Up @@ -351,9 +351,9 @@ Message type: ``execute_request``::
# should not send these messages.
'allow_stdin' : True,

# A boolean flag, which, if True, does not abort the execution queue, if an exception is encountered.
# This allows the queued execution of multiple execute_requests, even if they generate exceptions.
'stop_on_error' : False,
# A boolean flag, which, if True, aborts the execution queue if an exception is encountered.
# If False, queued execute_requests will execute even if this request generates an exception.
'stop_on_error' : True,
}

.. versionchanged:: 5.0
Expand Down

0 comments on commit f25136a

Please sign in to comment.