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 ce68543 commit e2fe446Copy full SHA for e2fe446
packages/mos-gateway/src/mosHandler.ts
@@ -488,6 +488,11 @@ export class MosHandler {
488
deviceOptions.primary.heartbeatInterval =
489
deviceOptions.primary.heartbeatInterval || DEFAULT_MOS_HEARTBEAT_INTERVAL
490
491
+ if (deviceOptions.secondary?.id && this._openMediaHotStandby[deviceOptions.secondary.id]) {
492
+ //@ts-expect-error this is not yet added to the official mos-connection
493
+ deviceOptions.secondary.openMediaHotStandby = true
494
+ }
495
+
496
const mosDevice: MosDevice = await this.mos.connect(deviceOptions)
497
this._ownMosDevices[deviceId] = mosDevice
498
0 commit comments