Skip to content

Commit 00b44fa

Browse files
committed
Use numerical port
1 parent 54e5db7 commit 00b44fa

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

adafruit_funhouse/network.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,15 +77,13 @@ def init_io_mqtt(self):
7777
"Adafruit IO secrets are kept in secrets.py, please add them there!\n\n"
7878
) from KeyError
7979

80-
return self.init_mqtt(
81-
IO_MQTT_BROKER, MQTT.MQTT_TLS_PORT, aio_username, aio_key, True
82-
)
80+
return self.init_mqtt(IO_MQTT_BROKER, 8883, aio_username, aio_key, True)
8381

8482
# pylint: disable=too-many-arguments
8583
def init_mqtt(
8684
self,
8785
broker,
88-
port=MQTT.MQTT_TLS_PORT,
86+
port=8883,
8987
username=None,
9088
password=None,
9189
use_io=False,

0 commit comments

Comments
 (0)