Skip to content

Commit

Permalink
fix a badcommit in opea-project#383 (opea-project#392)
Browse files Browse the repository at this point in the history
* fix a badcommit in opea-project#383

Signed-off-by: KfreeZ <[email protected]>

* fix a badcommit in opea-project#383

Signed-off-by: KfreeZ <[email protected]>

* fix a badcommit in opea-project#383

Signed-off-by: KfreeZ <[email protected]>

---------

Signed-off-by: KfreeZ <[email protected]>
  • Loading branch information
KfreeZ authored and gavinlichn committed Sep 5, 2024
1 parent a10b6ea commit 4b2b5aa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 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 All @@ -461,7 +461,7 @@ function validate_modify_config() {
exit 1
fi

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 4b2b5aa

Please sign in to comment.