d19adb6a6b
Change-Id: I379844bb46d9ac1b933124b1736b7594700f88a8 Partially-implements: blueprint port-kilo
11 lines
218 B
Bash
Executable File
11 lines
218 B
Bash
Executable File
#!/bin/bash
|
|
|
|
status=$(curl -s -w "%{http_code}" -o /dev/null http://localhost:8888/v1/queues)
|
|
|
|
if [[ $status -ne 200 && $status -ne 204 ]]; then
|
|
echo "ERROR($status): queue list failed"
|
|
exit $status
|
|
fi
|
|
|
|
exit 0
|