From a3da597fb6026eb3db2aab62edb258efeda75b40 Mon Sep 17 00:00:00 2001 From: lalalaurentiu Date: Tue, 9 Sep 2025 19:40:08 +0300 Subject: [PATCH] Add timeout parameter to logo publishing request for improved reliability --- utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/utils.py b/utils.py index 8638298..9cc1d88 100644 --- a/utils.py +++ b/utils.py @@ -58,6 +58,7 @@ def publish_logo(company, logo_url): "https://api.peviitor.ro/v3/logo/add/", headers={"Content-Type": content_type}, json=[{"id": company, "logo": logo_url}], + timeout=10, )