Skip to content

Commit

Permalink
Bump timeouts for configurations system tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ChunyiLyu committed Jul 19, 2021
1 parent 055591e commit c12e58e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions system_tests/system_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -165,14 +165,14 @@ var _ = Describe("Operator", func() {
}
Eventually(getConfigMapAnnotations, 30, 1).Should(
HaveKey("rabbitmq.com/pluginsUpdatedAt"), "plugins ConfigMap should have been annotated")
Eventually(getConfigMapAnnotations, 60, 1).Should(
Eventually(getConfigMapAnnotations, 120, 1).Should(
Not(HaveKey("rabbitmq.com/pluginsUpdatedAt")), "plugins ConfigMap annotation should have been removed")

Eventually(func() map[string][]byte {
secret, err := clientSet.CoreV1().Secrets(cluster.Namespace).Get(ctx, cluster.ChildResourceName("default-user"), metav1.GetOptions{})
Expect(err).NotTo(HaveOccurred())
return secret.Data
}).Should(HaveKeyWithValue("mqtt-port", []byte("1883")))
}, 30).Should(HaveKeyWithValue("mqtt-port", []byte("1883")))

_, err := kubectlExec(namespace,
statefulSetPodName(cluster, 0),
Expand Down

0 comments on commit c12e58e

Please sign in to comment.