Make build more stable

This commit is contained in:
Vladimir Mihailenco 2020-09-11 16:56:02 +03:00
parent 30e120f33e
commit b85a319370
1 changed files with 3 additions and 3 deletions

View File

@ -156,9 +156,9 @@ var _ = Describe("NewFailoverClusterClient", func() {
for i := 0; i < 100; i++ {
// Verify.
val, err := client.Get(ctx, "foo").Result()
Expect(err).NotTo(HaveOccurred())
Expect(val).To(Equal("master"))
Eventually(func() string {
return client.Get(ctx, "foo").Val()
}, "15s", "1ms").Should(Equal("master"))
}
// Create subscription.