Merge pull request #430 from robertoaloi/fail-if-nodetool-eval-fails

Exit with proper status code if 'eval' fails
This commit is contained in:
Fred Hebert 2015-01-23 08:39:49 -05:00
commit 83156cc1ef
2 changed files with 8 additions and 0 deletions

View file

@ -304,6 +304,10 @@ case "$1" in
shift
$NODETOOL eval "$1"
ES_EVAL=$?
if [ "$ES_EVAL" -ne 0 ]; then
exit $ES_EVAL
fi
;;
remote_console)

View file

@ -245,6 +245,10 @@ case "$1" in
shift
$NODETOOL eval "$1"
ES_EVAL=$?
if [ "$ES_EVAL" -ne 0 ]; then
exit $ES_EVAL
fi
;;
remote_console)