From 3a8c4e91daf2093b68b2d843cd30d61b932e4fa2 Mon Sep 17 00:00:00 2001 From: Olivier Date: Thu, 25 Aug 2022 15:56:24 +0100 Subject: [PATCH] Fix demo server name in example --- example.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example.py b/example.py index 8163c84..c67d54b 100644 --- a/example.py +++ b/example.py @@ -43,7 +43,7 @@ async def main(): # Wrap it to create an asyncronous version client = AsyncClient(sync_client, nursery) # Connect to the broker, and subscribe to the topic - client.connect("mqtt.eclipse.org", 1883, 60) + client.connect("mqtt.eclipseprojects.io", 1883, 60) client.subscribe(topic) # Start the reader