Disable error check in the script that is not needed anymore to avoid unnecessary server restarts

This commit is contained in:
Deve 2019-02-04 22:02:56 +01:00
parent 9429271535
commit 12dd137185

View File

@ -220,9 +220,9 @@ check_servers()
if [ $(echo $FILE_END | grep -c "Session not valid. Please sign in.") -gt 0 ]; then if [ $(echo $FILE_END | grep -c "Session not valid. Please sign in.") -gt 0 ]; then
show_message "Error: Check server: Session not valid" show_message "Error: Check server: Session not valid"
SUCCESS=0 SUCCESS=0
elif [ $(echo $FILE_END | grep curl_easy_perform | grep -c "Timeout was reached") -gt 0 ]; then # elif [ $(echo $FILE_END | grep curl_easy_perform | grep -c "Timeout was reached") -gt 0 ]; then
show_message "Error: Check server: Timeout was reached" # show_message "Error: Check server: Timeout was reached"
SUCCESS=0 # SUCCESS=0
fi fi
done done