cli: use correct ioc host
Deploy bin / deploy (push) Successful in 1s
Deploy agebd python package / deploy (push) Successful in 4s

This commit is contained in:
Benjamin Labrecque
2026-07-08 09:36:16 +02:00
parent deb1acbddb
commit dfd6e1eb4a
2 changed files with 1 additions and 7 deletions
-6
View File
@@ -32,11 +32,9 @@ MASTER_IOC_SUBS_FILE = MASTER_SERVICE_DIR / "ioc" / "AGEBD-CPCL-MASTER_main.subs
class ServiceCreator:
def __init__(
self,
ioc_host: str,
ioc_port: int,
user: str,
) -> None:
self.ioc_host = ioc_host
self.ioc_port = ioc_port
self.user = user
@@ -60,7 +58,6 @@ class ServiceCreator:
try:
self._render_new_service_templates(
service=service,
ioc_host=self.ioc_host,
ioc_port=self.ioc_port,
user=self.user,
)
@@ -96,7 +93,6 @@ class ServiceCreator:
def _render_new_service_templates(
self,
service: Service,
ioc_host: str,
ioc_port: int,
user: str,
):
@@ -110,8 +106,6 @@ class ServiceCreator:
"service_id": service.id_str,
"service_name_upper": service.name_upper,
"service_name_lower": service.name_lower,
# TODO: restrict this, use enum
"ioc_host": ioc_host,
"ioc_port": ioc_port,
"user": user,
},