Skip to content

Commit

Permalink
Merge branch 'main' of github.com:triton-inference-server/server into…
Browse files Browse the repository at this point in the history
… yinggeh-fix-triton-container-version
  • Loading branch information
yinggeh committed Jan 15, 2025
2 parents 9ecf20d + 71ee05c commit 3038595
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 3038595

Please sign in to comment.