Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Fix L0_lifecycle server shutdown (#7933) #7951

Merged
merged 1 commit into from
Jan 17, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions qa/L0_lifecycle/test.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
# Copyright 2018-2024, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# Copyright 2018-2025, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
Expand Down Expand Up @@ -1576,7 +1576,7 @@ if [ `grep -c "Model 'custom_zero_1_float32' (version 1) has 1 in-flight inferen
RET=1
fi

kill $SERVER_PID
kill $SERVER_PID || true
wait $SERVER_PID

rm -f $CLIENT_LOG
Expand Down Expand Up @@ -1614,7 +1614,7 @@ if [ `grep -c "Model 'custom_sequence_int32' (version 1) has 1 in-flight inferen
RET=1
fi

kill $SERVER_PID
kill $SERVER_PID || true
wait $SERVER_PID

rm -f $CLIENT_LOG
Expand Down Expand Up @@ -1655,7 +1655,7 @@ if [ `grep -c "Model 'ensemble_zero_1_float32' (version 1) has 1 in-flight infer
RET=1
fi

kill $SERVER_PID
kill $SERVER_PID || true
wait $SERVER_PID

LOG_IDX=$((LOG_IDX+1))
Expand Down Expand Up @@ -2128,7 +2128,7 @@ if [ $? -ne 0 ]; then
fi
set -e

kill $SERVER_PID
kill $SERVER_PID || true
wait $SERVER_PID

LOG_IDX=$((LOG_IDX+1))
Expand Down
Loading