We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be596f9 commit 657efd2Copy full SHA for 657efd2
1 file changed
e2e/compat/tests-old-client.bats
@@ -80,6 +80,13 @@ wait_for_compat_exporter() {
80
81
stop_compat_exporter() {
82
# Kill the bash wrapper loop and any child jmp processes
83
+ if [ -f "$COMPAT_PIDS_FILE" ]; then
84
+ while IFS= read -r pid; do
85
+ if [ -n "$pid" ]; then
86
+ kill -9 "$pid" 2>/dev/null || true
87
+ fi
88
+ done < "$COMPAT_PIDS_FILE"
89
90
pkill -9 -f "jmp run --exporter compat-old-exporter$" 2>/dev/null || true
91
# Clear tracked PIDs since they're now dead
92
echo "" > "$COMPAT_PIDS_FILE"
0 commit comments