mirror of
https://github.com/PiBrewing/craftbeerpi4.git
synced 2024-11-09 17:07:43 +01:00
raise error notification if step can't be started
This commit is contained in:
parent
b642bab351
commit
60afd70dfe
2 changed files with 3 additions and 2 deletions
|
@ -1,3 +1,3 @@
|
|||
__version__ = "4.3.2.a2"
|
||||
__version__ = "4.3.2.a3"
|
||||
__codename__ = "Winter Storm"
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ from os import listdir
|
|||
import os
|
||||
from os.path import isfile, join
|
||||
import shortuuid
|
||||
from cbpi.api.dataclasses import NotificationAction, Props, Step
|
||||
from cbpi.api.dataclasses import NotificationAction, NotificationType, Props, Step
|
||||
from tabulate import tabulate
|
||||
|
||||
from ..api.step import StepMove, StepResult, StepState
|
||||
|
@ -299,6 +299,7 @@ class StepController:
|
|||
await step.instance.start()
|
||||
step.status = StepState.ACTIVE
|
||||
except Exception as e:
|
||||
self.cbpi.notify("Error", "Can't start step. Please check step in Mash Profile", NotificationType.ERROR)
|
||||
logging.error("Failed to start step %s" % step)
|
||||
|
||||
async def save_basic(self, data):
|
||||
|
|
Loading…
Reference in a new issue