From 27e4d73bc2618d378a0610960cf5e81985e5d914 Mon Sep 17 00:00:00 2001 From: Angus Gratton Date: Tue, 27 Aug 2024 12:04:27 +1000 Subject: [PATCH] umqtt.robust: Remove reference to missing example. It looks like this example file was not added to the original commit back in 6190cec14a6514c4adc8dfdc33b355be10db0400. Fixes issue #320. Signed-off-by: Angus Gratton --- micropython/umqtt.robust/example_sub_robust.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/micropython/umqtt.robust/example_sub_robust.py b/micropython/umqtt.robust/example_sub_robust.py index c991c70a..f09befe0 100644 --- a/micropython/umqtt.robust/example_sub_robust.py +++ b/micropython/umqtt.robust/example_sub_robust.py @@ -19,8 +19,7 @@ c.set_callback(sub_cb) # # There can be a problem when a session for a given client exists, # but doesn't have subscriptions a particular application expects. -# In this case, a session needs to be cleaned first. See -# example_reset_session.py for an obvious way how to do that. +# In this case, a session needs to be cleaned first. # # In an actual application, it's up to its developer how to # manage these issues. One extreme is to have external "provisioning"