Skip to content

Commit f25136a

Browse files
authored
Merge pull request #423 from meeseeksmachine/auto-backport-of-pr-422-on-5.x
Backport PR #422 on branch 5.x (Clarify stop_on_error documentation.)
2 parents ed4716e + 36cfaf4 commit f25136a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/messaging.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -351,9 +351,9 @@ Message type: ``execute_request``::
351351
# should not send these messages.
352352
'allow_stdin' : True,
353353

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

359359
.. versionchanged:: 5.0

0 commit comments

Comments
 (0)