From 9ed35f8adca4e033f85eb5133e2d762d7c80d5e7 Mon Sep 17 00:00:00 2001 From: Jonas De Corte Date: Mon, 2 Sep 2024 15:24:45 +0200 Subject: [PATCH] Use http_kwargs instead of kwargs --- ingestify/infra/fetch/http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ingestify/infra/fetch/http.py b/ingestify/infra/fetch/http.py index 17ec55f..b620b90 100644 --- a/ingestify/infra/fetch/http.py +++ b/ingestify/infra/fetch/http.py @@ -72,7 +72,7 @@ def retrieve_http( if not next_url: break else: - response = requests.get(next_url, headers=headers, **kwargs) + response = requests.get(next_url, headers=headers, **http_kwargs) content = json.dumps({data_path: data}).encode("utf-8") else: