Skip to content

Commit

Permalink
Fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
olim7t committed Aug 30, 2024
1 parent 0be32c0 commit d25111e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion controllers/k8ssandra/k8ssandracluster_controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -925,7 +925,8 @@ func createMultiDcCluster(t *testing.T, ctx context.Context, f *framework.Framew
}, timeout, interval, "timed out waiting for creation of contact-points Service for dc2")

t.Log("simulate a change of Endpoints in dc2")
f.Update(ctx, dc2Key, f.NewAllPodsEndpoints(kcKey, kc, dc2Key, "10.0.0.3"))
err = f.Update(ctx, dc2Key, f.NewAllPodsEndpoints(kcKey, kc, dc2Key, "10.0.0.3"))
require.NoError(err, "failed to update Endpoints")

t.Log("check that the contact-points Service for dc2 was updated")
require.Eventually(func() bool {
Expand Down

0 comments on commit d25111e

Please sign in to comment.