Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion helper-scripts
2 changes: 1 addition & 1 deletion node_cli/operations/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ def update_passive(env_filepath: str, env: Dict) -> bool:
meta_manager.update_meta(
VERSION,
env['NODE_VERSION'],
env['DOCKER_LVMPY_VERSION'],
None,
distro.id(),
distro.version(),
)
Expand Down
5 changes: 1 addition & 4 deletions node_cli/utils/docker_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,7 @@
'boot-api': 'sk_boot_api',
}

BASE_PASSIVE_COMPOSE_SERVICES = {
'admin': 'sk_admin',
'nginx': 'sk_nginx',
}
BASE_PASSIVE_COMPOSE_SERVICES = {'admin': 'sk_admin', 'nginx': 'sk_nginx', **REDIS_SERVICE_DICT}

BASE_PASSIVE_FAIR_COMPOSE_SERVICES = {
'admin': 'sk_admin',
Expand Down
2 changes: 1 addition & 1 deletion node_cli/utils/meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def asdict(self) -> dict:

@dataclass
class CliMeta(CliMetaBase):
docker_lvmpy_version: str = DEFAULT_DOCKER_LVMPY_VERSION
docker_lvmpy_version: str | None = DEFAULT_DOCKER_LVMPY_VERSION

def asdict(self) -> dict:
return {
Expand Down