Skip to content

Commit

Permalink
fix: Set keepalives_idle None by default (#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
2 people authored and adchia committed Sep 7, 2023
1 parent 77bfe36 commit 093928d
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
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 093928d

Please sign in to comment.