File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 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
15771577fi
15781578
1579- kill $SERVER_PID
1579+ kill $SERVER_PID || true
15801580wait $SERVER_PID
15811581
15821582rm -f $CLIENT_LOG
@@ -1614,7 +1614,7 @@ if [ `grep -c "Model 'custom_sequence_int32' (version 1) has 1 in-flight inferen
16141614 RET=1
16151615fi
16161616
1617- kill $SERVER_PID
1617+ kill $SERVER_PID || true
16181618wait $SERVER_PID
16191619
16201620rm -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
16561656fi
16571657
1658- kill $SERVER_PID
1658+ kill $SERVER_PID || true
16591659wait $SERVER_PID
16601660
16611661LOG_IDX=$(( LOG_IDX+ 1 ))
@@ -2128,7 +2128,7 @@ if [ $? -ne 0 ]; then
21282128fi
21292129set -e
21302130
2131- kill $SERVER_PID
2131+ kill $SERVER_PID || true
21322132wait $SERVER_PID
21332133
21342134LOG_IDX=$(( LOG_IDX+ 1 ))
You can’t perform that action at this time.
0 commit comments