Skip to content

Commit

Permalink
Fix missing options parameter on reconnect
Browse files Browse the repository at this point in the history
fixes #468
  • Loading branch information
davkal committed Sep 9, 2015
1 parent 2bde4a0 commit 5f2e632
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/app/scripts/utils/web-api-utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ function createWebsocket(topologyUrl, optionsQuery) {
debug('Closed websocket to ' + topologyUrl);

reconnectTimer = setTimeout(function() {
createWebsocket(topologyUrl);
createWebsocket(topologyUrl, optionsQuery);
}, reconnectTimerInterval);
};

Expand Down

0 comments on commit 5f2e632

Please sign in to comment.