fix: Engagement dashboard crash on Users tab (#28131)

pull/28415/head^2
Heitor Tanoue 3 years ago committed by GitHub
parent a035fb53d5
commit e99d2c538d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      apps/meteor/server/models/raw/Messages.ts

@ -219,7 +219,7 @@ export class MessagesRaw extends BaseRaw<IMessage> implements IMessagesModel {
if (options.count) {
params.push({ $limit: options.count });
}
return this.col.aggregate(params, { readPreference: readSecondaryPreferred() }).toArray();
return this.col.aggregate(params, { allowDiskUse: true, readPreference: readSecondaryPreferred() }).toArray();
}
findLivechatClosedMessages(rid: IRoom['_id'], searchTerm?: string, options?: FindOptions<IMessage>): FindPaginated<FindCursor<IMessage>> {

Loading…
Cancel
Save