From 42bcde2345fdbde36f1a5d92d2c18c8f7021c808 Mon Sep 17 00:00:00 2001 From: Georgiy Eterevskiy <goshik_e@mail.ru> Date: Tue, 12 Sep 2023 17:47:03 +0300 Subject: [PATCH] Add start command --- perxis/extensions/bootstrap.py | 2 ++ setup.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/perxis/extensions/bootstrap.py b/perxis/extensions/bootstrap.py index 1209dbe..37769c2 100644 --- a/perxis/extensions/bootstrap.py +++ b/perxis/extensions/bootstrap.py @@ -51,6 +51,8 @@ def bootstrap( # f"Рзменилась версия расширения {ext_descriptor.extension} ({ext.version} -> {ext_descriptor.version})" # ) + register_extension.start() + 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 143b114..950d433 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ def load_requirements(): setup( name='perxis', - version='1.0.4', + version='1.0.5', description='Perxis python client', long_description=long_description, long_description_content_type='text/markdown', -- GitLab