Print log when no longer pulling messages due to repeated failures

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
This commit is contained in:
Daniel Calviño Sánchez 2019-05-15 15:22:35 +02:00
Родитель d55617ca22
Коммит 4cb08c0527
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -639,6 +639,8 @@
// Request has been aborted. Ignore.
} else if (this.currentRoomToken) {
if (this.pullMessagesFails >= 3) {
console.log('Stop pulling messages after repeated failures');
this._trigger('pullMessagesStoppedOnFail');
return;