|
@@ -66,7 +66,7 @@ async def process_pipeline_inlet_filter(request, payload, user, models):
|
|
|
if "pipeline" in model:
|
|
|
sorted_filters.append(model)
|
|
|
|
|
|
- async with aiohttp.ClientSession() as session:
|
|
|
+ async with aiohttp.ClientSession(trust_env=True) as session:
|
|
|
for filter in sorted_filters:
|
|
|
urlIdx = filter.get("urlIdx")
|
|
|
if urlIdx is None:
|
|
@@ -115,7 +115,7 @@ async def process_pipeline_outlet_filter(request, payload, user, models):
|
|
|
if "pipeline" in model:
|
|
|
sorted_filters = [model] + sorted_filters
|
|
|
|
|
|
- async with aiohttp.ClientSession() as session:
|
|
|
+ async with aiohttp.ClientSession(trust_env=True) as session:
|
|
|
for filter in sorted_filters:
|
|
|
urlIdx = filter.get("urlIdx")
|
|
|
if urlIdx is None:
|