From d27a989463e84677150b03887dc6ffbd527704e8 Mon Sep 17 00:00:00 2001 From: Nikita Demashov Date: Thu, 7 Sep 2023 09:58:33 +0300 Subject: [PATCH] set keepalives_idle None by default --- 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