From 8eeee85357d4164266c3ac5c0ee7a87730a33ea7 Mon Sep 17 00:00:00 2001 From: Georgiy Eterevskiy <goshik_e@mail.ru> Date: Tue, 12 Sep 2023 17:41:45 +0300 Subject: [PATCH] Mv log message --- perxis/extensions/bootstrap.py | 3 +-- setup.py | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/perxis/extensions/bootstrap.py b/perxis/extensions/bootstrap.py index e11dd65..1209dbe 100644 --- a/perxis/extensions/bootstrap.py +++ b/perxis/extensions/bootstrap.py @@ -28,6 +28,7 @@ def bootstrap( ext_manager_stub.RegisterExtensions(manager_pb2.RegisterExtensionsRequest( extensions=[ext_descriptor] )) + logger.info(f"Расширение {ext_descriptor.extension} зарегистрировано РІ perxis") with grpc.insecure_channel(ext_manager_host) as extensions_manager_channel: intercept_channel_extensions_manager_channel = grpc.intercept_channel(extensions_manager_channel, interceptor) @@ -50,8 +51,6 @@ def bootstrap( # f"Рзменилась версия расширения {ext_descriptor.extension} ({ext.version} -> {ext_descriptor.version})" # ) - logger.info(f"Расширение {ext_descriptor.extension} зарегистрировано РІ perxis") - with grpc.insecure_channel(content_host) as content_channel: intercepted_content_channel = grpc.intercept_channel(content_channel, interceptor) diff --git a/setup.py b/setup.py index b76488b..143b114 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ def load_requirements(): setup( name='perxis', - version='1.0.3', + version='1.0.4', description='Perxis python client', long_description=long_description, long_description_content_type='text/markdown', -- GitLab