default-hour #14

Merged
kleph merged 5 commits from default-hour into master 2020-04-09 00:06:59 +02:00
2 changed files with 14 additions and 2 deletions
Showing only changes of commit ff0bca9421 - Show all commits

View file

@ -18,9 +18,9 @@ def index(hours=None, minutes=None):
if not hours:
hours = 17
if hours and not minutes:
minutes = 30
else:
minutes = 0
else:
minutes = 30
data = render_template('beer.html', hours=hours, minutes=minutes)
return data

View file

@ -5,6 +5,18 @@ else
fi
echo "testing URL: ${TEST_URL}"
while :
do
status_code=$(curl -o /dev/null -s -w '%{http_code}' ${TEST_URL})
echo "status code: ${status_code}"
[[ ${status_code} -eq 200 ]] && break
[[ ${i} -gt 5 ]] && exit 1
echo "service not ready or in error"
sleep 5
i=$(( i+1 ))
done
CURL_OPTS='-s'
# default
curl ${CURL_OPTS} ${TEST_URL} | grep -q 'setHours( 17, 30);'