Skip to content

Commit

Permalink
Change back slower polling intervals for the tests, or they start to …
Browse files Browse the repository at this point in the history
…fail.
  • Loading branch information
burmanm committed Dec 11, 2024
1 parent b296fad commit 8c38ff6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions controllers/k8ssandra/k8ssandracluster_controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ import (

const (
timeout = time.Second * 5
interval = time.Millisecond * 100
interval = time.Millisecond * 500
)

var (
Expand All @@ -69,8 +69,8 @@ func TestK8ssandraCluster(t *testing.T) {

reconcilerConfig := config.InitConfig()

reconcilerConfig.DefaultDelay = 50 * time.Millisecond
reconcilerConfig.LongDelay = 200 * time.Millisecond
reconcilerConfig.DefaultDelay = 100 * time.Millisecond
reconcilerConfig.LongDelay = 300 * time.Millisecond

err := testEnv.Start(ctx, t, func(mgr manager.Manager, clientCache *clientcache.ClientCache, clusters []cluster.Cluster) error {
err := (&K8ssandraClusterReconciler{
Expand Down

0 comments on commit 8c38ff6

Please sign in to comment.