1
0
mirror of https://github.com/ncarlier/webhookd.git synced 2025-04-09 19:53:56 +00:00
webhookd/pkg/worker/test/test_timeout.sh
2020-02-26 21:19:11 +00:00

12 lines
157 B
Bash
Executable File

#!/bin/bash
echo "Running timeout test script..."
for i in {1..5}; do
sleep .5
echo "running..."
done
echo "This line should not be executed!"
exit 0