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 cc23a5c commit 2d21f42Copy full SHA for 2d21f42
openwisp_controller/connection/static/connection/js/commands.js
@@ -10,6 +10,10 @@ const commandWebSocket = new ReconnectingWebSocket(
10
null, {
11
debug: false,
12
automaticOpen: false,
13
+ // The library re-connects if it fails to establish a connection in "timeoutInterval".
14
+ // On slow internet connections, the default value of "timeoutInterval" will
15
+ // keep terminating and re-establishing the connection.
16
+ timeoutInterval: 7000,
17
}
18
);
19
0 commit comments