We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d263d72 commit d85d10aCopy full SHA for d85d10a
stac_fastapi/pgstac/config.py
@@ -75,10 +75,16 @@ class PostgresSettings(BaseSettings):
75
default=None,
76
),
77
]
78
- postgres_host: Annotated[
+ postgres_host_reader: Annotated[
79
Optional[str],
80
Field(
81
- deprecated="`postgres_host` is deprecated, please use `pghost`", default=None
+ deprecated="`postgres_host_reader` is deprecated, please use `pghost`", default=None
82
+ ),
83
+ ]
84
+ postgres_host_writer: Annotated[
85
+ Optional[str],
86
+ Field(
87
+ deprecated="`postgres_host_writer` is deprecated, please use `pghost`", default=None
88
89
90
postgres_port: Annotated[
0 commit comments