Skip to content

Commit

Permalink
fix: Ensure Proper Type Parsing in Kopf Settings (#504)
Browse files Browse the repository at this point in the history
Co-authored-by: Eran Kampf <205185+ekampf@users.noreply.github.com>
  • Loading branch information
3schwartz and ekampf authored Jan 3, 2025
1 parent 891239e commit 18ac8fe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ class TwingateOperatorSettings(BaseSettings):
remote_network_id: GlobalID = NULL_RN_ID
remote_network_name: str | None = None
host: str = "twingate.com"
kopf_watching_server_timeout: float | None = None
kopf_watching_client_timeout: float | None = None
kopf_watching_connect_timeout: float | None = None
kopf_watching_reconnect_backoff: float | None = None
kopf_watching_server_timeout: int | None = None
kopf_watching_client_timeout: int | None = None
kopf_watching_connect_timeout: int | None = None
kopf_watching_reconnect_backoff: int | None = None

@property
def full_url(self) -> str:
Expand Down

0 comments on commit 18ac8fe

Please sign in to comment.