Skip to content

Commit

Permalink
Skip validation on warnings for valid use
Browse files Browse the repository at this point in the history
  • Loading branch information
ChristineTChen committed Sep 3, 2021
1 parent 1f70c27 commit 238517a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def get_oauth_token(self):
try:
res = self.http.get(
join_url(self._uaa_url, "oauth/token"),
auth=(self._client_id, self._client_secret),
auth=(self._client_id, self._client_secret), # SKIP_HTTP_VALIDATION`
params={"grant_type": "client_credentials"},
)
except RequestException:
Expand Down
2 changes: 1 addition & 1 deletion voltdb/datadog_checks/voltdb/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def request(self, procedure, parameters=None):
parameters = json.dumps(parameters)
params['Parameters'] = parameters

return self._http_get(url, auth=auth, params=params)
return self._http_get(url, auth=auth, params=params) # SKIP_HTTP_VALIDATION


class VoltDBAuth(requests.auth.AuthBase):
Expand Down

0 comments on commit 238517a

Please sign in to comment.