diff --git a/scripts/ulimit-n.sh b/scripts/ulimit-n.sh index 3e7275cef..1252eb454 100755 --- a/scripts/ulimit-n.sh +++ b/scripts/ulimit-n.sh @@ -10,8 +10,7 @@ fi if [[ $(ulimit -n) -lt $maxOpenFds ]]; then ulimit -n $maxOpenFds || { - echo "Error: nofiles too small: $(ulimit -n). Run \"ulimit -n $maxOpenFds\" to continue"; - exit 1 + echo "Error: nofiles too small: $(ulimit -n). Failed to run \"ulimit -n $maxOpenFds\""; } fi