From bc194185c71d389123106548f5db28f50dfa8983 Mon Sep 17 00:00:00 2001 From: Miguel Pragosa <154613770+mpragosa-te@users.noreply.github.com> Date: Tue, 15 Oct 2024 10:54:56 +0100 Subject: [PATCH] fix: Fix the base path being used (#79) (cherry picked from commit b0f91d10a6832dcbf83493aeca57b6b88ffdab8f) --- .../src/thousandeyes_sdk/core/configuration.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thousandeyes-sdk-core/src/thousandeyes_sdk/core/configuration.py b/thousandeyes-sdk-core/src/thousandeyes_sdk/core/configuration.py index 2a610fba..b1569b3d 100644 --- a/thousandeyes-sdk-core/src/thousandeyes_sdk/core/configuration.py +++ b/thousandeyes-sdk-core/src/thousandeyes_sdk/core/configuration.py @@ -38,7 +38,7 @@ class Configuration: ) -> None: """Constructor """ - self._base_path = "https://api.thousandeyes.com" if host is None else host + self._base_path = "https://api.thousandeyes.com/v7" if host is None else host """Default Base url """ self.access_token = access_token