aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBlaise Thompson <blaise@untzag.com>2020-10-30 13:27:06 -0500
committerBlaise Thompson <blaise@untzag.com>2020-10-30 13:27:06 -0500
commitb2a98221fc43872a00fabe2f61508976c68eee51 (patch)
tree4a6716109b509920996aa41b56463966f729ac4f
parent971a28124f70fedacd6d2eb35125d328ba87df39 (diff)
local broker
-rw-r--r--write-influx/write_influx.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/write-influx/write_influx.py b/write-influx/write_influx.py
index 4beae4e..3313203 100644
--- a/write-influx/write_influx.py
+++ b/write-influx/write_influx.py
@@ -86,7 +86,7 @@ client = mqtt.Client()
client.on_connect = on_connect
client.on_message = on_message
-client.connect("mosquitto.chem.wisc.edu", 1883, 60)
+client.connect("mqtt", 1883, 60)
# Blocking call that processes network traffic, dispatches callbacks and
# handles reconnecting.