From c5781c0a0adf08f41011f3b72683cc6229c659d7 Mon Sep 17 00:00:00 2001 From: Arcadiy Ivanov Date: Mon, 4 Dec 2023 16:19:58 -0500 Subject: [PATCH] Change `ktor.app.register_plugin` to NOP for future upgrade --- .idea/misc.xml | 3 +++ build.py | 2 +- src/main/python/kubernator/app.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.idea/misc.xml b/.idea/misc.xml index dfb1dc0..8b54eda 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -1,4 +1,7 @@ + + \ No newline at end of file diff --git a/build.py b/build.py index 6a6cc1a..e084ec5 100644 --- a/build.py +++ b/build.py @@ -24,7 +24,7 @@ use_plugin("python.coveralls") name = "kubernator" -version = "0.0.4" +version = "0.0.5" summary = "Kubernator is the a pluggable framework for K8S provisioning" authors = [Author("Express Systems USA, Inc.", "")] diff --git a/src/main/python/kubernator/app.py b/src/main/python/kubernator/app.py index d79c29c..2a71d00 100644 --- a/src/main/python/kubernator/app.py +++ b/src/main/python/kubernator/app.py @@ -268,7 +268,7 @@ def handle_init(self): repository_credentials_provider=self._repository_credentials_provider, walk_remote=self.walk_remote, walk_local=self.walk_local, - register_plugin=self.register_plugin, + register_plugin=lambda *args, **kwargs: True, config_as_dict=config_as_dict, config_parent=config_parent, register_cleanup=self.register_cleanup,