We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c9dbee commit 49abb79Copy full SHA for 49abb79
app.js
@@ -39,6 +39,10 @@ new Cli({
39
},
40
41
onConfigChanged: function(config) {
42
+ if (!bridge) {
43
+ log.warn(`Bridge hasn't finished starting yet, config reload ignored`);
44
+ return;
45
+ }
46
bridge.onConfigChanged(config);
47
48
generateRegistration: function(reg, callback) {
changelog.d/1744.bugfix
@@ -0,0 +1 @@
1
+Warn if a config reload is attempted before the bridge is ready.
0 commit comments