Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/client/delphi_epidata.py
Original file line number Diff line number Diff line change
Expand Up @@ -728,7 +728,7 @@ async def async_make_calls(param_combos):
"""Helper function to asynchronously make and aggregate Epidata GET requests."""
tasks = []
connector = TCPConnector(limit=batch_size)
async with ClientSession(connector=connector) as session:
async with ClientSession(connector=connector, headers=_HEADERS) as session:
for param in param_combos:
task = asyncio.ensure_future(async_get(param, session))
tasks.append(task)
Expand Down