refs #1167 #1168 #1169 #1170 removes int type in port variable declaration

ogboot-log
Luis Gerardo Romero Garcia 2024-11-22 11:42:43 +01:00
parent 27751b50b3
commit b798464c84
1 changed files with 0 additions and 1 deletions

View File

@ -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