Skip to content

Commit

Permalink
ci: Fix L0_lifecycle server shutdown (#7933)
Browse files Browse the repository at this point in the history
  • Loading branch information
kthui committed Jan 17, 2025
1 parent 0d38361 commit 91de93c
Showing 1 changed file with 5 additions and 5 deletions.
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

0 comments on commit 91de93c

Please sign in to comment.