Skip to content
Snippets Groups Projects
Commit 9138e7ff authored by Lluis Gifre Renom's avatar Lluis Gifre Renom
Browse files

NBI WS Server, fixed type of port setting

parent fec153e7
No related branches found
No related tags found
1 merge request!294Release TeraFlowSDN 4.0
...@@ -34,7 +34,7 @@ vnt_manager_client: VNTManagerClient = VNTManagerClient() ...@@ -34,7 +34,7 @@ vnt_manager_client: VNTManagerClient = VNTManagerClient()
context_client: ContextClient = ContextClient() context_client: ContextClient = ContextClient()
ALL_HOSTS = "0.0.0.0" ALL_HOSTS = "0.0.0.0"
WS_E2E_PORT = str(get_setting('WS_E2E_PORT', default='8762')) WS_E2E_PORT = int(get_setting('WS_E2E_PORT', default='8762'))
LOGGER = logging.getLogger(__name__) LOGGER = logging.getLogger(__name__)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment