From 36cfaf4576527102342b388f0547dd52458da4b5 Mon Sep 17 00:00:00 2001 From: Min RK Date: Fri, 15 Feb 2019 14:20:03 +0100 Subject: [PATCH] Backport PR #422: Clarify stop_on_error documentation. --- docs/messaging.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/messaging.rst b/docs/messaging.rst index 7c533a7de..40d920fa6 100644 --- a/docs/messaging.rst +++ b/docs/messaging.rst @@ -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