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++ { for i := 0; i < 100; i++ {
// Verify. // Verify.
val, err := client.Get(ctx, "foo").Result() Eventually(func() string {
Expect(err).NotTo(HaveOccurred()) return client.Get(ctx, "foo").Val()
Expect(val).To(Equal("master")) }, "15s", "1ms").Should(Equal("master"))
} }
// Create subscription. // Create subscription.