From 8543443622344281f5e4423f2966a17d82e36d4f Mon Sep 17 00:00:00 2001 From: Abhishek Amte Date: Mon, 21 Oct 2024 09:40:25 +0200 Subject: [PATCH] increase kafka binding client config timeout to 180s --- buildpack/databroker/business_events.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildpack/databroker/business_events.py b/buildpack/databroker/business_events.py index 392ae700..c1c5cfbd 100644 --- a/buildpack/databroker/business_events.py +++ b/buildpack/databroker/business_events.py @@ -47,7 +47,7 @@ def _put_client_config(url, auth_token, version, dependencies_json_str): url=url, headers=headers, json={"dependencies": dependencies_json_str}, - timeout=30, + timeout=180, ) resp.raise_for_status() return resp.text