We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 508279c commit 2a30606Copy full SHA for 2a30606
src/delegation_backend/aws_keyspaces.go
@@ -66,6 +66,7 @@ func InitializeKeyspaceSession(config *AwsKeyspacesConfig) (*gocql.Session, erro
66
67
cluster.Consistency = gocql.LocalQuorum
68
cluster.DisableInitialHostLookup = false
69
+ cluster.RetryPolicy = &gocql.ExponentialBackoffRetryPolicy{NumRetries: 10, Min: 100 * time.Millisecond, Max: 10 * time.Second}
70
71
session, err := cluster.CreateSession()
72
if err != nil {
0 commit comments