Skip to content

Commit

Permalink
fix a badcommit in #383
Browse files Browse the repository at this point in the history
Signed-off-by: KfreeZ <[email protected]>
  • Loading branch information
KfreeZ committed Sep 4, 2024
1 parent a50e037 commit e9eb668
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/scripts/e2e/gmc_xeon_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ function validate_modify_config() {
fi

pods_count=$(kubectl get pods -n $MODIFY_STEP_NAMESPACE --no-headers | grep -v "Terminating" | wc -l)
check_gmc_status $MODIFY_STEP_NAMESPACE 'codegen' $((pods_count-1)) 0 3
check_gmc_status $MODIFY_STEP_NAMESPACE 'codegen' $(pods_count) 0 3
if [ $? -ne 0 ]; then
echo "GMC status is not as expected"
exit 1
Expand Down Expand Up @@ -495,7 +495,7 @@ function validate_remove_step() {
fi

pods_count=$(kubectl get pods -n $DELETE_STEP_NAMESPACE --no-headers | grep -v "Terminating" | wc -l)
check_gmc_status $DELETE_STEP_NAMESPACE 'codegen' $((pods_count-1)) 0 3
check_gmc_status $DELETE_STEP_NAMESPACE 'codegen' $(pods_count) 0 3
if [ $? -ne 0 ]; then
echo "GMC status is not as expected"
exit 1
Expand Down

0 comments on commit e9eb668

Please sign in to comment.