diff --git a/perxis/extensions/bootstrap.py b/perxis/extensions/bootstrap.py index e11dd658f4432cf657c8992860afa519f8f037f0..1209dbee1dce09ac66c5d7bae4c7b4e7db81d1e9 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 b76488bd67fb1112d1e03ca165a4590cd1d5256b..143b114a1b047674019064eb5dd61da0990804fb 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',