uncomment 'break' in listening -> does not help to shutdown faster

This commit is contained in:
avollkopf 2023-03-26 15:22:44 +02:00
parent b0406a4de8
commit 37203dd93e
2 changed files with 2 additions and 2 deletions

View file

@ -1,3 +1,3 @@
__version__ = "4.1.7.a14"
__version__ = "4.1.7.a15"
__codename__ = "Groundhog Day"

View file

@ -73,7 +73,7 @@ class SatelliteController:
except asyncio.CancelledError:
# Cancel
self.logger.warning("MQTT Listening Cancelled")
break
#break
except MqttError as e:
self.logger.error("MQTT Exception: {}".format(e))
except Exception as e: