Adding logic to skip status without proper data

This commit is contained in:
Lucas Gravley 2020-07-21 10:13:15 -05:00
parent 4d079ba298
commit 6022bd2ee6

View file

@ -826,6 +826,10 @@ CallStatusAPI() {
MESSAGE="$FAIL_MSG"
fi
##########################################################
# Check to see if were enabled for multi Status mesaages #
##########################################################
if [ $MULTI_STATUS == "true" ]; then
##############################################
# Call the status API to create status check #
##############################################
@ -853,6 +857,7 @@ CallStatusAPI() {
echo "ERROR:[$SEND_STATUS_CMD]"
# Not going to fail the script on this yet...
fi
fi
}
################################################################################
#### Function Footer ###########################################################