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"