Skip to content

Commit 62b1cbc

Browse files
committed
Enable back the old check for multiple deployer pods temporarily disabled in #16956
1 parent 020235f commit 62b1cbc

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

test/extended/deployments/util.go

+3-4
Original file line numberDiff line numberDiff line change
@@ -162,10 +162,9 @@ func checkDeploymentInvariants(dc *deployapi.DeploymentConfig, rcs []*corev1.Rep
162162
running.Insert(k)
163163
}
164164
}
165-
// FIXME: enable this check when we fix the controllers
166-
//if running.Len() > 1 {
167-
// return fmt.Errorf("found multiple running deployments: %v", running.List())
168-
//}
165+
if running.Len() > 1 {
166+
return fmt.Errorf("found multiple running deployments: %v", running.List())
167+
}
169168
sawStatus := sets.NewString()
170169
statuses := []string{}
171170
for _, rc := range rcs {

0 commit comments

Comments
 (0)