tracker: add sessId header for assist polling
This commit is contained in:
parent
048ae0913c
commit
13bd3d9121
4 changed files with 9 additions and 2 deletions
|
|
@ -1,3 +1,7 @@
|
|||
## 11.0.2
|
||||
|
||||
- add sessionId header on socket.connect for sticky sessions
|
||||
|
||||
## 11.0.1
|
||||
|
||||
- fixed rare issue causing videocam feed to be black during calls
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@openreplay/tracker-assist",
|
||||
"description": "Tracker plugin for screen assistance through the WebRTC",
|
||||
"version": "11.0.1",
|
||||
"version": "11.0.2",
|
||||
"keywords": [
|
||||
"WebRTC",
|
||||
"assistance",
|
||||
|
|
|
|||
|
|
@ -238,6 +238,9 @@ export default class Assist {
|
|||
...this.app.getSessionInfo(),
|
||||
}),
|
||||
},
|
||||
extraHeaders: {
|
||||
sessionId,
|
||||
},
|
||||
transports: ['websocket',],
|
||||
withCredentials: true,
|
||||
reconnection: true,
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
export const pkgVersion = "11.0.1";
|
||||
export const pkgVersion = "11.0.2";
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue