Merge pull request #55 from jalim/hotfix/buzzer_fix

Move buzzer init order to fall after config init.
This commit is contained in:
Manuel83
2017-07-05 20:34:29 +02:00
committed by GitHub
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -50,7 +50,7 @@ class ConfigView(BaseView):
cls.post_init_callback(value)
cls.api.cache[cls.cache_key][value.name] = value
@cbpi.initalizer(order=1)
@cbpi.initalizer(order=0)
def init(cbpi):
ConfigView.register(cbpi.app, route_base='/api/config')