Skip to content

Commit

Permalink
Force kill jobs after integration v2 test finish
Browse files Browse the repository at this point in the history
Memcached remains stuck with graceful kill, this unblock the script and
the ci lane

Signed-off-by: Mario Fernandez <mariofer@redhat.com>
  • Loading branch information
marioferh committed Feb 15, 2024
1 parent a01e5b9 commit defda70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/integration-v2.sh
Expand Up @@ -7,7 +7,7 @@
set -euo pipefail

result=1
trap 'kill $(jobs -p); exit $result' EXIT
trap 'kill -9 $(jobs -p); exit $result' EXIT

(./authorization-server localhost:9101 ./test/tokens.json) &

Expand Down

0 comments on commit defda70

Please sign in to comment.