make check condition more specific
This commit is contained in:
parent
84dc06bfb7
commit
7a37693c4d
|
|
@ -306,7 +306,7 @@ func (c *Cluster) isSafeToRecreatePods(pods *v1.PodList) bool {
|
|||
|
||||
for _, pod := range pods.Items {
|
||||
state, err := c.patroni.GetNodeState(&pod)
|
||||
if err != nil || state != "running" {
|
||||
if err != nil || state == "creating replica" {
|
||||
c.logger.Warningf("cannot re-create pod %s: patroni in %s state", pod.Name, state)
|
||||
return false
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue