Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion python/neutron-understack/neutron_understack/undersync.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def __init__(
) -> None:
"""Simple client for Undersync."""
self.token = auth_token or self._fetch_undersync_token()
self.url = "http://undersync-service.undersync.svc.cluster.local:8080"
self.url = "http://undersync.undersync.svc.cluster.local:8080"
self.api_url = api_url or self.url
self.timeout = timeout

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class Undersync:
def __init__(
self,
auth_token: str,
api_url="http://undersync-service.undersync.svc.cluster.local:8080",
api_url="http://undersync.undersync.svc.cluster.local:8080",
) -> None:
"""Simple client for Undersync."""
self.token = auth_token
Expand Down
Loading