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 1
1
#! /bin/bash
2
- # Copyright 2018-2024 , NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2
+ # Copyright 2018-2025 , NVIDIA CORPORATION & AFFILIATES. All rights reserved.
3
3
#
4
4
# Redistribution and use in source and binary forms, with or without
5
5
# 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
1576
1576
RET=1
1577
1577
fi
1578
1578
1579
- kill $SERVER_PID
1579
+ kill $SERVER_PID || true
1580
1580
wait $SERVER_PID
1581
1581
1582
1582
rm -f $CLIENT_LOG
@@ -1614,7 +1614,7 @@ if [ `grep -c "Model 'custom_sequence_int32' (version 1) has 1 in-flight inferen
1614
1614
RET=1
1615
1615
fi
1616
1616
1617
- kill $SERVER_PID
1617
+ kill $SERVER_PID || true
1618
1618
wait $SERVER_PID
1619
1619
1620
1620
rm -f $CLIENT_LOG
@@ -1655,7 +1655,7 @@ if [ `grep -c "Model 'ensemble_zero_1_float32' (version 1) has 1 in-flight infer
1655
1655
RET=1
1656
1656
fi
1657
1657
1658
- kill $SERVER_PID
1658
+ kill $SERVER_PID || true
1659
1659
wait $SERVER_PID
1660
1660
1661
1661
LOG_IDX=$(( LOG_IDX+ 1 ))
@@ -2128,7 +2128,7 @@ if [ $? -ne 0 ]; then
2128
2128
fi
2129
2129
set -e
2130
2130
2131
- kill $SERVER_PID
2131
+ kill $SERVER_PID || true
2132
2132
wait $SERVER_PID
2133
2133
2134
2134
LOG_IDX=$(( LOG_IDX+ 1 ))
You can’t perform that action at this time.
0 commit comments