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
Currently, if the actor system is initialized and tasks have started, a Ctrl+C sent to the CLI causes an orderly shutdown and logs a SUCCESS message, returning return code 0. For the sake of shell scripts or other invocations with traps it would be nice if these were seen as a reason to tear down the outer workflow.
Current behavior (note tasks delete-index and create-index here are running. If tasks are running, send Ctrl+C):
Note that SUCCESS is now ABORTED, and the return code of the command is 130 instead of 0. Bonus points if after Ctrl+C is sent some sort of acknowledgement is printed to stderr such as: Rally has detected KeyboardInterrupt. Shutting down...
The text was updated successfully, but these errors were encountered:
Currently, if the actor system is initialized and tasks have started, a Ctrl+C sent to the CLI causes an orderly shutdown and logs a SUCCESS message, returning return code
0
. For the sake of shell scripts or other invocations withtrap
s it would be nice if these were seen as a reason to tear down the outer workflow.Current behavior (note tasks
delete-index
andcreate-index
here are running. If tasks are running, send Ctrl+C):desired behavior (for instance):
Note that
SUCCESS
is nowABORTED
, and the return code of the command is130
instead of0
. Bonus points if after Ctrl+C is sent some sort of acknowledgement is printed tostderr
such as:Rally has detected KeyboardInterrupt. Shutting down...
The text was updated successfully, but these errors were encountered: