Skip to content
Snippets Groups Projects

msobczyk/handle signals in docker entrypoint

Merged Marcin Sobczyk requested to merge msobczyk/handle-signals-in-docker-entrypoint into develop
All threads resolved!
Compare and Show latest version
244 files
+ 1464
1177
Compare changes
  • Side-by-side
  • Inline
Files
244
@@ -4,7 +4,7 @@ from dataclasses import dataclass
from clive.__private.cli.commands.abc.beekeeper_based_command import BeekeeperCommon
from clive.__private.cli.commands.abc.contextual_cli_command import ContextualCLICommand
from clive.__private.core.beekeeper import Beekeeper
from clive.__private.core.world import TyperWorld, World
from clive.__private.core.world import CLIWorld, World
@dataclass(kw_only=True)
@@ -23,7 +23,7 @@ class WorldBasedCommand(ContextualCLICommand[World], BeekeeperCommon, ABC):
return self.world.beekeeper
async def _create_context_manager_instance(self) -> World:
return TyperWorld(
return CLIWorld(
profile_name=self.profile_name,
use_beekeeper=self.use_beekeeper,
beekeeper_remote_endpoint=self.beekeeper_remote_url,
Loading