From b798464c84be711bfc37aff9a5ad21af9369d871 Mon Sep 17 00:00:00 2001 From: lgromero Date: Fri, 22 Nov 2024 11:42:43 +0100 Subject: [PATCH] refs #1167 #1168 #1169 #1170 removes int type in port variable declaration --- installer/ogboot_installer.py | 1 - 1 file changed, 1 deletion(-) diff --git a/installer/ogboot_installer.py b/installer/ogboot_installer.py index 5e3845f..1d29fdf 100755 --- a/installer/ogboot_installer.py +++ b/installer/ogboot_installer.py @@ -31,7 +31,6 @@ OGCORE_IP = config["ogCore_ServerIP"] ogboot_ip_port = config['ogBoot_ServerIP'] if ':' in ogboot_ip_port: OGBOOT_IP, OGBOOT_PORT = ogboot_ip_port.split(':') - OGBOOT_PORT = int(OGBOOT_PORT) else: OGBOOT_IP = ogboot_ip_port OGBOOT_PORT = 8082