Update broker.py

regression change from testing, changing port back to 1883 as default mqtt port.
This commit is contained in:
2018-09-10 11:55:13 -07:00
committed by GitHub
parent 0e079c8889
commit f6412158d8

View File

@@ -6,7 +6,7 @@ import os
#
#===========================================================================
host = os.getenv('MQTT_BROKER_IP', '192.168.1.20')
port = os.getenv('MQTT_BROKER_PORT', 31333)
port = os.getenv('MQTT_BROKER_PORT', 1883)
# Keep alive time in seconds. Client sends a ping if no other message
# is sent in this interval.