Browse Source

Log empty responses in qdata

qdn
CalDescent 3 years ago
parent
commit
3ad0e92a0f
  1. 3
      tools/qdata

3
tools/qdata

@ -75,6 +75,9 @@ elif [[ "${method}" == "GET" ]]; then
fi
response=$(curl --silent --insecure -X GET "http://${host}:${port}/arbitrary/${service}/${name}?rebuild=${rebuild}&filepath=${filepath}")
if [ -z "${response}" ]; then
echo "Empty response from ${host}:${port}"
fi
if [[ "${response}" == *"error"* || "${response}" == *"ERROR"* ]]; then
echo "${response}"; exit
fi

Loading…
Cancel
Save