Skip to content

Commit 2fcc313

Browse files
authored
Merge pull request #142 from Flagsmith/fix/render-config
fix: Warning when running edge-proxy-render-config
2 parents d757e7a + 8e99138 commit 2fcc313

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Create an example configuration by running the `edge-proxy-render-config` entryp
6363
rye run edge-proxy-render-config
6464
```
6565

66-
This will output the example configuration to stdout and write it to `./config.json`.
66+
This will write the default settings to `./config.json`.
6767

6868
Here's how to mount the file into Edge Proxy's Docker container:
6969

src/edge_proxy/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ class AppSettings(BaseModel):
113113
)
114114
]
115115
)
116-
api_url: HttpUrl = "https://edge.api.flagsmith.com/api/v1"
116+
api_url: HttpUrl = HttpUrl("https://edge.api.flagsmith.com/api/v1")
117117
api_poll_frequency_seconds: int = Field(
118118
default=10,
119119
validation_alias=AliasChoices(

0 commit comments

Comments
 (0)