Skip to content

Commit

Permalink
Merge pull request #10 from karellen/release_0.0.5
Browse files Browse the repository at this point in the history
Change `ktor.app.register_plugin` to NOP for future upgrade
  • Loading branch information
arcivanov authored Dec 4, 2023
2 parents 73d55bb + c5781c0 commit 9080426
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.", "")]
Expand Down
2 changes: 1 addition & 1 deletion src/main/python/kubernator/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 9080426

Please sign in to comment.