Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions e2e/multi_client_ibrl_allocated_ip_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -233,14 +233,14 @@ func runMultiClientIBRLAllocatedIPWorkflowTest(t *testing.T, log *slog.Logger, d
return false
}
return strings.Contains(string(output), client2DZIP)
}, 60*time.Second, 1*time.Second, "client1 should have route to client2")
}, 90*time.Second, 1*time.Second, "client1 should have route to client2")
require.Eventually(t, func() bool {
output, err := client2.Exec(t.Context(), []string{"ip", "r", "list", "dev", "doublezero0"})
if err != nil {
return false
}
return strings.Contains(string(output), client1DZIP)
}, 60*time.Second, 1*time.Second, "client2 should have route to client1")
}, 90*time.Second, 1*time.Second, "client2 should have route to client1")
log.Debug("--> Clients have routes to each other")

// Disconnect client1.
Expand Down
Loading