ui: use polling for first request
This commit is contained in:
parent
dd469d2349
commit
39855651d5
3 changed files with 3 additions and 3 deletions
|
|
@ -185,7 +185,7 @@ export default class AssistManager {
|
|||
const socket: Socket = (this.socket = io(urlObject.origin, {
|
||||
withCredentials: true,
|
||||
multiplex: true,
|
||||
transports: ['websocket'],
|
||||
transports: ['polling', 'websocket'],
|
||||
path: '/ws-assist/socket',
|
||||
auth: {
|
||||
token: agentToken,
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@openreplay/tracker-assist",
|
||||
"description": "Tracker plugin for screen assistance through the WebRTC",
|
||||
"version": "11.0.2",
|
||||
"version": "11.0.2-beta.1",
|
||||
"keywords": [
|
||||
"WebRTC",
|
||||
"assistance",
|
||||
|
|
|
|||
|
|
@ -241,7 +241,7 @@ export default class Assist {
|
|||
extraHeaders: {
|
||||
sessionId,
|
||||
},
|
||||
transports: ['websocket',],
|
||||
transports: ['polling', 'websocket',],
|
||||
withCredentials: true,
|
||||
reconnection: true,
|
||||
reconnectionAttempts: 30,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue