Skip to content

Commit b0f91d1

Browse files
authored
fix: Fix the base path being used (#79)
1 parent e8590d7 commit b0f91d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

thousandeyes-sdk-core/src/thousandeyes_sdk/core/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def __init__(self, host=None,
3838
) -> None:
3939
"""Constructor
4040
"""
41-
self._base_path = "https://api.thousandeyes.com" if host is None else host
41+
self._base_path = "https://api.thousandeyes.com/v7" if host is None else host
4242
"""Default Base url
4343
"""
4444
self.access_token = access_token

0 commit comments

Comments
 (0)