File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -412,6 +412,12 @@ if [[ -n "${E2E_LLAMA_PORT_FORWARD_PID_FILE:-}" && -f "$E2E_LLAMA_PORT_FORWARD_P
412412 fi
413413 rm -f " $E2E_LLAMA_PORT_FORWARD_PID_FILE "
414414fi
415+ # Disown before kill so bash drops the jobs from its table and suppresses
416+ # "Killed" job-control noise on wait (the useful diagnostics are in the curl
417+ # readiness loops above, not in these terminal notifications).
418+ disown $PF_LCS_PID 2> /dev/null || true
419+ disown $PF_JWKS_PID 2> /dev/null || true
420+ disown $PF_LLAMA_PID 2> /dev/null || true
415421kill $PF_LCS_PID 2> /dev/null || true
416422kill $PF_JWKS_PID 2> /dev/null || true
417423kill $PF_LLAMA_PID 2> /dev/null || true
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ features/prompts.feature
1111features/faiss.feature
1212features/inline_rag.feature
1313features/byok_pdf.feature
14+ features/vector_stores.feature
1415features/feedback.feature
1516features/query.feature
1617features/responses.feature
@@ -31,4 +32,3 @@ features/tls-ca.feature
3132features/tls-mtls.feature
3233features/tls-tlsv13.feature
3334features/opentelemetry.feature
34- features/vector_stores.feature
You can’t perform that action at this time.
0 commit comments