openvidu-components: update onNodeCrashed doc

pull/763/head
pabloFuente 2022-11-17 14:51:45 +01:00
parent 6947fe87cb
commit 887fdf6ea9
1 changed files with 2 additions and 2 deletions

View File

@ -382,8 +382,8 @@ export class VideoconferenceComponent implements OnInit, OnDestroy, AfterViewIni
@Output() onParticipantCreated: EventEmitter<ParticipantAbstractModel> = new EventEmitter<ParticipantAbstractModel>();
/**
* Provides event notifications that fire when Media Node crash OpenVidu Pro from the OpenVidu Pro cluster.
* OpenVidu Pro delegates the recovery of the sessions to the application in the event of a Media Node crash.
* Provides event notifications that fire in the case of a node crash in your OpenVidu deployment.
* OpenVidu delegates the recovery of the sessions to the application in the event of a node crash.
* See {@link https://docs.openvidu.io/en/stable/openvidu-pro/fault-tolerance/ OpenVidu Pro Fault tolerance}.
*/
@Output() onNodeCrashed: EventEmitter<void> = new EventEmitter<void>();