From 01a170e7f31db3830d154be15d33e5aa16e12457 Mon Sep 17 00:00:00 2001 From: gifrerenom <lluis.gifre@cttc.es> Date: Wed, 23 Nov 2022 19:12:26 +0000 Subject: [PATCH] Common: - added TE service constants --- src/common/Constants.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/common/Constants.py b/src/common/Constants.py index 964d904da..4b5236dca 100644 --- a/src/common/Constants.py +++ b/src/common/Constants.py @@ -49,6 +49,7 @@ class ServiceNameEnum(Enum): INTERDOMAIN = 'interdomain' PATHCOMP = 'pathcomp' WEBUI = 'webui' + TE = 'te' # Used for test and debugging only DLT_GATEWAY = 'dltgateway' @@ -67,6 +68,7 @@ DEFAULT_SERVICE_GRPC_PORTS = { ServiceNameEnum.CYBERSECURITY.value : 10000, ServiceNameEnum.INTERDOMAIN .value : 10010, ServiceNameEnum.PATHCOMP .value : 10020, + ServiceNameEnum.TE .value : 10030, # Used for test and debugging only ServiceNameEnum.DLT_GATEWAY .value : 50051, -- GitLab