Put parameter into cache after adding

This commit is contained in:
Manuel83
2017-06-16 01:02:45 +02:00
parent c07e3f4d79
commit bcd07e4705
+3 -2
View File
@@ -251,8 +251,9 @@ class CraftBeerPi(ActorAPI, SensorAPI):
def add_config_parameter(self, name, value, type, description, options=None):
from modules.config import Config
with self.app.app_context():
Config.insert(**{"name":name, "value": value, "type": type, "description": description, "options": options})
c = Config.insert(**{"name":name, "value": value, "type": type, "description": description, "options": options})
if self.cache.get("config") is not None:
self.cache.get("config")[c.name] = c
def clear_cache(self, key, is_array=False):
if is_array: