minor bug fix

Error message showed up when no instance of kettle was active
This commit is contained in:
avollkopf 2021-11-21 13:59:54 +01:00
parent a0e89fe4dc
commit 19f3a16154
2 changed files with 4 additions and 3 deletions

View file

@ -1 +1 @@
__version__ = "4.0.0.46"
__version__ = "4.0.0.47"

View file

@ -35,9 +35,10 @@ class KettleController(BasicController):
async def stop(self, id):
try:
logging.info("Stop Kettele {}".format(id))
logging.info("Stop Kettle {}".format(id))
item = self.find_by_id(id)
await item.instance.stop()
if item.instance:
await item.instance.stop()
await self.push_udpate()
except Exception as e:
logging.error("Failed to switch off KettleLogic {} {}".format(id, e))