#2913: Pre-commit changes.

This commit is contained in:
Nick Todd
2024-10-30 11:15:39 +00:00
parent 9fd862763b
commit 97094aba79
2 changed files with 2 additions and 4 deletions

View File

@@ -376,7 +376,7 @@ class PrimaiteGame:
if service_class is not None:
_LOGGER.debug(f"installing {service_type} on node {new_node.hostname}")
new_node.software_manager.install(service_class, **service_cfg.get('options', {}))
new_node.software_manager.install(service_class, **service_cfg.get("options", {}))
new_service = new_node.software_manager.software[service_class.__name__]
# fixing duration for the service

View File

@@ -309,9 +309,7 @@ class DatabaseClient(Application, identifier="DatabaseClient"):
if not self._can_perform_action():
return None
if self.server_ip_address is None:
self.sys_log.warning(
f"{self.name}: Database server IP address not provided."
)
self.sys_log.warning(f"{self.name}: Database server IP address not provided.")
return None
connection_request_id = str(uuid4())