From 0cf46713d42010c5812f9e17d06bec1e52d5e9de Mon Sep 17 00:00:00 2001 From: dddennnisss Date: Fri, 14 Aug 2026 12:02:08 +0700 Subject: [PATCH] =?UTF-8?q?photo=5Fprocessor.py:=20verify=3DFalse=20=D0=B4?= =?UTF-8?q?=D0=BB=D1=8F=20SSL=20cert?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- photo_bot/photo_processor.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/photo_bot/photo_processor.py b/photo_bot/photo_processor.py index 8d8ed9b..eeb9ea6 100644 --- a/photo_bot/photo_processor.py +++ b/photo_bot/photo_processor.py @@ -101,7 +101,8 @@ def _upload_to_api(image_bytes: bytes, user_id: str, coords: tuple) -> dict: files={ "image": ("photo.jpg", image_bytes, "image/jpeg") }, - timeout=30 + timeout=30, + verify=False ) response.raise_for_status() return response.json()