@tiledesk/tiledesk-server 2.10.27 → 2.10.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +3 -0
- package/models/request.js +3 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/models/request.js
CHANGED
@@ -503,9 +503,10 @@ RequestSchema.index({ id_project: 1, preflight: 1, createdAt: -1, status: 1 });
|
|
503
503
|
RequestSchema.index({ id_project: 1, preflight: 1, createdAt: 1 })
|
504
504
|
RequestSchema.index({ participants: 1, id_project: 1, createdAt: -1, status: 1 })
|
505
505
|
RequestSchema.index({ id_project: 1, "snapshot.lead.email": 1, createdAt: -1, status: 1 })
|
506
|
-
RequestSchema.index({ id_project: 1, participants: 1, "snapshot.agents.id_user": 1, createdAt: -1, status: 1 })
|
507
506
|
RequestSchema.index({ id_project: 1, createdAt: -1, status: 1 })
|
508
|
-
|
507
|
+
|
508
|
+
// ERROR DURING DEPLOY OF 2.10.27
|
509
|
+
//RequestSchema.index({ id_project: 1, participants: 1, "snapshot.agents.id_user": 1, createdAt: -1, status: 1 })
|
509
510
|
|
510
511
|
// cannot index parallel arrays [agents] [participants] {"driv
|
511
512
|
// RequestSchema.index({ id_project: 1, status: 1, preflight:1, participants:1, "agents.id_user":1, updatedAt: -1 }); //NN LO APPLICA
|