From 8717e9bf0fd253454982b9c9e9527c4d41906e9c Mon Sep 17 00:00:00 2001 From: Nikita Demashov Date: Thu, 7 Sep 2023 21:24:55 +0300 Subject: [PATCH] fix: Set keepalives_idle None by default (#3756) set keepalives_idle None by default Co-authored-by: Nikita Demashov --- sdk/python/feast/infra/utils/postgres/postgres_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/python/feast/infra/utils/postgres/postgres_config.py b/sdk/python/feast/infra/utils/postgres/postgres_config.py index 9fbaed474d..a4ebb456ef 100644 --- a/sdk/python/feast/infra/utils/postgres/postgres_config.py +++ b/sdk/python/feast/infra/utils/postgres/postgres_config.py @@ -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