util to move counter up/down

This commit is contained in:
boyska 2022-08-20 12:43:27 +02:00
parent 25601d88e9
commit bd7891d2fb

17
utils/movecounter.sh Executable file
View file

@ -0,0 +1,17 @@
#!/bin/sh
set -eu
queue_num="${QUEUE_NUM:-0}"
user_password="${USER_PASSWORD}"
host="${HOST:-http://localhost:8000}"
if [ "$1" = "+1" ]; then
url="${host}/v1/counter/${queue_num}/increment"
else
url="${host}/v1/counter/${queue_num}/decrement"
fi
curl -s -X POST -u "${user_password}" "${url}"