Skip to content

Commit 71ee05c

Browse files
authored
ci: Fix L0_lifecycle server shutdown (#7933)
1 parent 05f9f00 commit 71ee05c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

qa/L0_lifecycle/test.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
# Copyright 2018-2024, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2+
# Copyright 2018-2025, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
33
#
44
# Redistribution and use in source and binary forms, with or without
55
# modification, are permitted provided that the following conditions
@@ -1576,7 +1576,7 @@ if [ `grep -c "Model 'custom_zero_1_float32' (version 1) has 1 in-flight inferen
15761576
RET=1
15771577
fi
15781578

1579-
kill $SERVER_PID
1579+
kill $SERVER_PID || true
15801580
wait $SERVER_PID
15811581

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

1617-
kill $SERVER_PID
1617+
kill $SERVER_PID || true
16181618
wait $SERVER_PID
16191619

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

1658-
kill $SERVER_PID
1658+
kill $SERVER_PID || true
16591659
wait $SERVER_PID
16601660

16611661
LOG_IDX=$((LOG_IDX+1))
@@ -2128,7 +2128,7 @@ if [ $? -ne 0 ]; then
21282128
fi
21292129
set -e
21302130

2131-
kill $SERVER_PID
2131+
kill $SERVER_PID || true
21322132
wait $SERVER_PID
21332133

21342134
LOG_IDX=$((LOG_IDX+1))

0 commit comments

Comments
 (0)