Skip to content

Commit

Permalink
add trust_env to ClientSession initialization to mimic proxy behaviou…
Browse files Browse the repository at this point in the history
…r of requests library (#6640)

Co-authored-by: Igor Radovanovic <[email protected]>
  • Loading branch information
deeleeramone and IgorWounds authored Aug 28, 2024
1 parent 554b38a commit dc77a32
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions openbb_platform/core/openbb_core/provider/utils/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ async def amake_request(
)

with_session = kwargs.pop("with_session", "session" in kwargs)
session: ClientSession = kwargs.pop("session", ClientSession())
session: ClientSession = kwargs.pop("session", ClientSession(trust_env=True))

try:
response = await session.request(method, url, **kwargs)
Expand Down Expand Up @@ -175,7 +175,7 @@ async def amake_requests(
Union[dict, List[dict]]
Response json
"""
session: ClientSession = kwargs.pop("session", ClientSession())
session: ClientSession = kwargs.pop("session", ClientSession(trust_env=True))
kwargs["response_callback"] = response_callback

urls = urls if isinstance(urls, list) else [urls]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ async def download_plotly_js():
# we use aiohttp to download plotly.js
# this is so we don't have to block the main thread
async with aiohttp.ClientSession(
connector=aiohttp.TCPConnector(verify_ssl=False)
connector=aiohttp.TCPConnector(verify_ssl=False), trust_env=True
) as session, session.get(f"https://cdn.plot.ly/{js_filename}") as resp:
with open(str(PLOTLYJS_PATH), "wb") as f:
while True:
Expand Down

0 comments on commit dc77a32

Please sign in to comment.