Compare commits

..

2 Commits

Author SHA1 Message Date
vsc-m
a4c6de9202 CP-2395 Undo removal of url encoding logic 2024-09-26 14:01:32 +01:00
vsc-m
d1d32568a0 CP-2395 More removals 2024-09-26 13:41:50 +01:00

View File

@ -220,22 +220,10 @@ class Configuration:
} }
return auth return auth
def get_host_settings(self):
"""Gets an array of host settings
:return: An array of host settings
"""
return [
{
'url': "https://api.thousandeyes.com",
'description': "ThousandEyes API production URL",
}
]
@property @property
def host(self): def host(self):
"""Return generated host.""" """Return generated host."""
return self.get_host_from_settings(self.server_index, variables={}) return self._base_path
@host.setter @host.setter
def host(self, value): def host(self, value):