Skip to content

Commit

Permalink
Fixes bug where headers are missing from requests
Browse files Browse the repository at this point in the history
  • Loading branch information
djperrefort authored Jul 23, 2024
1 parent 9890d9e commit 37a40e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion keystone_client/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def _send_request(
self._refresh_tokens(force=False, timeout=timeout)

url = urllib.parse.urljoin(self.url, endpoint)
response = requests.request(method, url, **kwargs)
response = requests.request(method, url, headers=self._get_headers(), **kwargs)
response.raise_for_status()
return response

Expand Down

0 comments on commit 37a40e8

Please sign in to comment.