mirror of
https://github.com/dw-0/kiauh.git
synced 2025-12-14 11:04:29 +05:00
bugfix: add greater delay to test_api to let cpu usage settle on slower devices
This commit is contained in:
@@ -671,27 +671,22 @@ handle_haproxy_lighttpd(){
|
|||||||
test_api(){
|
test_api(){
|
||||||
HOST_IP=$(hostname -I | cut -d" " -f1)
|
HOST_IP=$(hostname -I | cut -d" " -f1)
|
||||||
status_msg "Testing API ..."
|
status_msg "Testing API ..."
|
||||||
sleep 5
|
status_msg "Please wait ..."
|
||||||
status_msg "API response from http://$HOST_IP:7125/printer/info :"
|
sleep 15
|
||||||
API_RESPONSE=$(curl -sG4m5 http://$HOST_IP:7125/printer/info)
|
status_msg "API response from http://"$HOST_IP":7125/printer/info :"
|
||||||
echo -e "${cyan}$API_RESPONSE${default}"
|
echo -e "${cyan}$(curl -s "http://"$HOST_IP":7125/printer/info")${default}"
|
||||||
if [ $(curl -sG4 "http://$HOST_IP:7125/printer/info" | grep '^{"result"' -c) -eq 1 ]; then
|
if [ $(curl -s "http://"$HOST_IP":7125/printer/info" | grep '^{"result"' -c) -eq 1 ]; then
|
||||||
echo; ok_msg "Klipper API is working correctly!"; echo
|
echo; ok_msg "Klipper API is working correctly!"; echo
|
||||||
else
|
else
|
||||||
echo; warn_msg "Klipper API not working correctly!"; echo
|
echo; warn_msg "Klipper API not working correctly!"; echo
|
||||||
fi
|
fi
|
||||||
|
status_msg "Testing Nginx ..."
|
||||||
|
status_msg "Please wait ..."
|
||||||
|
status_msg "API response from http://"$HOST_IP"/printer/info :"
|
||||||
|
echo -e "${cyan}$(curl -s "http://"$HOST_IP"/printer/info")${default}"
|
||||||
|
if [ $(curl -s "http://"$HOST_IP"/printer/info" | grep '^{"result"' -c) -eq 1 ]; then
|
||||||
|
echo; ok_msg "Nginx is working correctly!"; echo
|
||||||
|
else
|
||||||
|
echo; warn_msg "Nginx is not working correctly!"; echo
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
#test_nginx(){
|
|
||||||
# HOST_IP=$(hostname -I | cut -d" " -f1)
|
|
||||||
# status_msg "Testing Nginx ..."
|
|
||||||
# sleep 5
|
|
||||||
# status_msg "API response from http://$HOST_IP/printer/info :"
|
|
||||||
# API_RESPONSE="$(curl -sG4m5 http://$HOST_IP/printer/info)"
|
|
||||||
# echo -e "${cyan}$API_RESPONSE${default}"
|
|
||||||
# if [ $(curl -sG4 "http://$HOST_IP/printer/info" | grep '^{"result"' -c) -eq 1 #]; then
|
|
||||||
# echo; ok_msg "Nginx is working correctly!"; echo
|
|
||||||
# else
|
|
||||||
# echo; warn_msg "Nginx is not working correctly!"; echo
|
|
||||||
# fi
|
|
||||||
#}
|
|
||||||
Reference in New Issue
Block a user