From d007cb002353bf98367c786e02d1567bb63881c7 Mon Sep 17 00:00:00 2001 From: Alexander Presnyakov Date: Thu, 3 Jul 2025 16:05:22 +0000 Subject: [PATCH] Remove ExeMgr from constants --- cmapi/cmapi_server/constants.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/cmapi/cmapi_server/constants.py b/cmapi/cmapi_server/constants.py index b5dd85b04..56f70c042 100644 --- a/cmapi/cmapi_server/constants.py +++ b/cmapi/cmapi_server/constants.py @@ -66,7 +66,6 @@ class MCSProgs(Enum): WORKER_NODE = 'workernode' CONTROLLER_NODE = 'controllernode' PRIM_PROC = 'PrimProc' - EXE_MGR = 'ExeMgr' WRITE_ENGINE_SERVER = 'WriteEngineServer' DML_PROC = 'DMLProc' DDL_PROC = 'DDLProc' @@ -91,7 +90,6 @@ ALL_MCS_PROGS: dict[MCSProgs, ProgInfo] = { MCSProgs.WORKER_NODE: ProgInfo(13, 'mcs-workernode', 'DBRM_Worker{}', False, 1), MCSProgs.CONTROLLER_NODE: ProgInfo(11, 'mcs-controllernode', 'fg', True), MCSProgs.PRIM_PROC: ProgInfo(5, 'mcs-primproc', '', False, 1), - MCSProgs.EXE_MGR: ProgInfo(9, 'mcs-exemgr', '', False, 1), MCSProgs.WRITE_ENGINE_SERVER: ProgInfo(7, 'mcs-writeengineserver', '', False, 3), MCSProgs.DML_PROC: ProgInfo(3, 'mcs-dmlproc', '', False), MCSProgs.DDL_PROC: ProgInfo(1, 'mcs-ddlproc', '', False),