Skip to content
Snippets Groups Projects
Commit f8b798e0 authored by James Graham's avatar James Graham
Browse files

Fix failing tests due to incorrect connector_string

parent 4623fe0f
No related branches found
No related tags found
No related merge requests found
......@@ -238,7 +238,7 @@ class DataSource(BaseAppDataModel):
for auth_method_id, auth_function in REQUEST_AUTH_FUNCTIONS.items():
try:
# Can we get a response using this auth method?
response = requests.get(self._connector_string,
response = requests.get(self.connector_string,
auth=auth_function(self.api_key, ''))
response.raise_for_status()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment