Fix missing options parameter on reconnect

fixes #468
This commit is contained in:
David Kaltschmidt
2015-09-09 14:27:20 +02:00
parent 2bde4a070e
commit 5f2e632319

View File

@@ -47,7 +47,7 @@ function createWebsocket(topologyUrl, optionsQuery) {
debug('Closed websocket to ' + topologyUrl);
reconnectTimer = setTimeout(function() {
createWebsocket(topologyUrl);
createWebsocket(topologyUrl, optionsQuery);
}, reconnectTimerInterval);
};