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 ac84ef6 commit a5353ddCopy full SHA for a5353dd
src/socket-daemon.js
@@ -173,7 +173,7 @@ export default class SocketDaemon extends Daemon {
173
* Uses the websocket protocol to connect to the agent
174
*/
175
_wsConnect() {
176
- const wsProtocol = this.selectedProtocol === PROTOCOL.HTTPS ? 'ws' : 'wss';
+ const wsProtocol = this.selectedProtocol === PROTOCOL.HTTPS ? 'wss' : 'ws';
177
const address = this.agentInfo[wsProtocol];
178
this.socket = io(address, { reconnection: false, forceNew: true });
179
0 commit comments