Skip to content

Commit

Permalink
fix: Set keepalives_idle None by default (feast-dev#3756)
Browse files Browse the repository at this point in the history
set keepalives_idle None by default

Co-authored-by: Nikita Demashov <n.demashov@yadro.com>
  • Loading branch information
ndemashov and Nikita Demashov committed Sep 7, 2023
1 parent 68a8737 commit 8717e9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/python/feast/infra/utils/postgres/postgres_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@ class PostgreSQLConfig(FeastConfigBaseModel):
sslkey_path: Optional[StrictStr] = None
sslcert_path: Optional[StrictStr] = None
sslrootcert_path: Optional[StrictStr] = None
keepalives_idle: int = 0
keepalives_idle: Optional[int] = None

0 comments on commit 8717e9b

Please sign in to comment.