Skip to content

Commit 500ccec

Browse files
authored
Fix: Make postgres keepalives_idle optional for dbt projects (#1180)
1 parent fc7044c commit 500ccec

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sqlmesh/dbt/target.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ class PostgresConfig(TargetConfig):
257257
password: str
258258
port: int
259259
dbname: str
260-
keepalives_idle: int = 0
260+
keepalives_idle: t.Optional[int] = None
261261
connect_timeout: int = 10
262262
retries: int = 1 # Currently Unsupported by SQLMesh
263263
search_path: t.Optional[str] = None # Currently Unsupported by SQLMesh

0 commit comments

Comments
 (0)