Skip to content

Commit

Permalink
fix: Remove idle_heartbeat_interval from connection parameters and se…
Browse files Browse the repository at this point in the history
…t it to zero in CassandraOnlineStore
  • Loading branch information
Bhargav Dodla committed Jan 17, 2025
1 parent 141f218 commit bdfcf08
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,6 @@ def _get_cluster(self, config: RepoConfig):
for k, v in {
"protocol_version": protocol_version,
"execution_profiles": execution_profiles,
"idle_heartbeat_interval": None,
}.items()
if v is not None
}
Expand All @@ -309,6 +308,8 @@ def _get_cluster(self, config: RepoConfig):
hosts,
port=port,
auth_provider=auth_provider,
idle_heartbeat_interval=0,
idle_heartbeat_timeout=0,
**cluster_kwargs,
)
else:
Expand Down

0 comments on commit bdfcf08

Please sign in to comment.