From c2405f1326492ff522bced98d932f90e6d2001d3 Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 20 Oct 2025 22:32:31 +0300 Subject: [PATCH] add socket_internal --- common_lib/services/socket_internal.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common_lib/services/socket_internal.py b/common_lib/services/socket_internal.py index 6ce93b0..5dc2e9d 100644 --- a/common_lib/services/socket_internal.py +++ b/common_lib/services/socket_internal.py @@ -33,7 +33,7 @@ async def send_internal_socket_msg( return response.status_code, f"socket_service: {response.text}" wrapped = response.json() - return wrapped["data"] + return 200, wrapped except httpx.RequestError as e: if with_httpexception: diff --git a/pyproject.toml b/pyproject.toml index a395c00..fc27d1e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "common-lib" -version = "0.0.26" +version = "0.0.27" description = "Библиотека общих компонентов для микросервисов yobble" authors = [{ name = "cheykrym", email = "you@example.com" }] license = "MIT"