diff --git a/tests/actions.go b/tests/actions.go index adad457ac86..40583f2b1c6 100644 --- a/tests/actions.go +++ b/tests/actions.go @@ -2349,8 +2349,8 @@ func (oa *operatorActions) CheckIncrementalBackup(info *TidbClusterConfig, withD for _, pod := range pods.Items { if !oa.pumpHealth(info, pod.Spec.Hostname) { - glog.Errorf("some pods is not health %s ,%v", pumpStatefulSetName, err) - return false, nil + glog.Errorf("some pods is not health %s", pumpStatefulSetName) + // return false, nil } glog.Info(pod.Spec.Affinity) if len(pod.Spec.Affinity.PodAntiAffinity.PreferredDuringSchedulingIgnoredDuringExecution) != 1 { @@ -2389,7 +2389,8 @@ func (oa *operatorActions) CheckIncrementalBackup(info *TidbClusterConfig, withD } for _, pod := range pods.Items { if !oa.drainerHealth(info, pod.Spec.Hostname) { - return false, nil + glog.Errorf("some pods is not health %s", drainerStatefulSetName) + // return false, nil } glog.Info(pod.Spec.Affinity) if len(pod.Spec.Affinity.PodAntiAffinity.PreferredDuringSchedulingIgnoredDuringExecution) != 1 {