Merge branch 'develop' into update_check

This commit is contained in:
Bastian Schroll 2019-03-10 19:44:38 +01:00
commit 30a384c12d
13 changed files with 204 additions and 82 deletions

View file

@ -65,7 +65,7 @@ class RouterManager:
for route in router.get("route"):
routeType = route.get("type")
routeName = route.get("name")
routeConfig = route.get("Config", default=ConfigYAML()) # if no config - build a empty
routeConfig = route.get("config", default=ConfigYAML()) # if no config - build a empty
if routeType is None or routeName is None:
logging.error("type or name not found in route: %s", route)