Skip to content

Commit

Permalink
making test change
Browse files Browse the repository at this point in the history
  • Loading branch information
maxkahan committed Feb 1, 2024
1 parent 441477d commit a91b048
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions http_client/src/http_client/http_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from requests.sessions import Session
from typing_extensions import Annotated

logger = getLogger('vonage-http-client-v2')
logger = getLogger('vonage-http-client')


class HttpClient:
Expand Down Expand Up @@ -62,7 +62,11 @@ def __init__(self, auth: Auth, http_client_options: dict = None):
self._session.mount('https://', self._adapter)

self._user_agent = f'vonage-python-sdk python/{python_version()}'
self._headers = {'User-Agent': self._user_agent, 'Accept': 'application/json'}
self._headers = {
'User-Agent': self._user_agent,
'Accept': 'application/json',
'test': 'test',
}

@property
def http_client_options(self):
Expand Down

0 comments on commit a91b048

Please sign in to comment.