We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bd27b7 commit 0fe4d09Copy full SHA for 0fe4d09
system_tests/system_test.go
@@ -19,6 +19,7 @@ import (
19
"os"
20
"strconv"
21
"strings"
22
+ "time"
23
24
k8sresource "k8s.io/apimachinery/pkg/api/resource"
25
"k8s.io/apimachinery/pkg/types"
@@ -165,7 +166,7 @@ var _ = Describe("Operator", func() {
165
166
}
167
Eventually(getConfigMapAnnotations, 30, 1).Should(
168
HaveKey("rabbitmq.com/pluginsUpdatedAt"), "plugins ConfigMap should have been annotated")
- Eventually(getConfigMapAnnotations, 120, 1).Should(
169
+ Eventually(getConfigMapAnnotations, 4 * time.Minute, 1).Should(
170
Not(HaveKey("rabbitmq.com/pluginsUpdatedAt")), "plugins ConfigMap annotation should have been removed")
171
172
Eventually(func() map[string][]byte {
0 commit comments