From 78b2805364f497a42e20cabe7d7747a0d90607bd 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 c0b4cbf05..98100cdf3 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' @@ -68,6 +69,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