Skip to content

Commit

Permalink
Merge pull request #514 from marioferh/fix_integration_v2_test_after_…
Browse files Browse the repository at this point in the history
…rhel_update

OCPBUGS-24983: Force kill jobs after integration v2 test finish
  • Loading branch information
openshift-merge-bot[bot] committed Feb 15, 2024
2 parents a01e5b9 + 62e709c commit 9df5dd9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/integration-v2.sh
Expand Up @@ -7,7 +7,8 @@
set -euo pipefail

result=1
trap 'kill $(jobs -p); exit $result' EXIT
# Force kill in order to unblock ci lane when memcached get stuck and never finished
trap 'kill -9 $(jobs -p); exit $result' EXIT

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

Expand Down

0 comments on commit 9df5dd9

Please sign in to comment.