diff --git a/cbpi/__init__.py b/cbpi/__init__.py index 88b3fd2..231f90e 100644 --- a/cbpi/__init__.py +++ b/cbpi/__init__.py @@ -1,3 +1,3 @@ -__version__ = "4.3.2.a8" +__version__ = "4.3.2.a9" __codename__ = "Winter Storm" diff --git a/cbpi/controller/fermentation_controller.py b/cbpi/controller/fermentation_controller.py index 942786a..4b6a1f3 100644 --- a/cbpi/controller/fermentation_controller.py +++ b/cbpi/controller/fermentation_controller.py @@ -547,9 +547,10 @@ class FermentationController: for fermenter in fermentersteps: for step in fermenter['steps']: if step['status'] == 'A': - self.cbpi.push_update("cbpi/{}/{}/{}".format(key,fermenter['id'],step['id']), step) - else: - self.cbpi.push_update("cbpi/{}/{}/{}".format(key,fermenter['id'],step['id']), "") +# self.cbpi.push_update("cbpi/{}/{}/{}".format(key,fermenter['id'],step['id']), step) + self.cbpi.push_update("cbpi/{}/{}".format(key,fermenter['id']), step) + #else: + # self.cbpi.push_update("cbpi/{}/{}/{}".format(key,fermenter['id'],step['id']), "") async def call_action(self, id, action, parameter) -> None: