Skip to content

Commit 0fe4d09

Browse files
committed
Increate configuration updates timeout
1 parent 0bd27b7 commit 0fe4d09

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

system_tests/system_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ import (
1919
"os"
2020
"strconv"
2121
"strings"
22+
"time"
2223

2324
k8sresource "k8s.io/apimachinery/pkg/api/resource"
2425
"k8s.io/apimachinery/pkg/types"
@@ -165,7 +166,7 @@ var _ = Describe("Operator", func() {
165166
}
166167
Eventually(getConfigMapAnnotations, 30, 1).Should(
167168
HaveKey("rabbitmq.com/pluginsUpdatedAt"), "plugins ConfigMap should have been annotated")
168-
Eventually(getConfigMapAnnotations, 120, 1).Should(
169+
Eventually(getConfigMapAnnotations, 4 * time.Minute, 1).Should(
169170
Not(HaveKey("rabbitmq.com/pluginsUpdatedAt")), "plugins ConfigMap annotation should have been removed")
170171

171172
Eventually(func() map[string][]byte {

0 commit comments

Comments
 (0)