-
Notifications
You must be signed in to change notification settings - Fork 10.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Chore: Migrate LivechatVisitors model to raw #25756
Conversation
This pull request introduces 3 alerts when merging 7cd747c into 0b1073e - view on LGTM.com new alerts:
|
This pull request introduces 1 alert when merging d42f0ec into 83851a0 - view on LGTM.com new alerts:
|
…l-livechat-visitor
…l-livechat-visitor
@@ -32,7 +32,7 @@ addMigration({ | |||
}); | |||
|
|||
if (updates.length) { | |||
Promise.await(VisitorsRaw.col.bulkWrite(updates)); | |||
Promise.await(LivechatVisitors.col.bulkWrite(updates)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
migrations can be async
Promise.await(LivechatVisitors.col.bulkWrite(updates)); | |
await LivechatVisitors.col.bulkWrite(updates); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
C'mon, this mig is from like 4 months ago (But here's again to not to have it inside the loop)
…ketChat/Rocket.Chat into chore/migrate-model-livechat-visitor
This pull request introduces 7 alerts when merging b362bea into b77c075 - view on LGTM.com new alerts:
|
…l-livechat-visitor
…turbo * 'develop' of github.com:RocketChat/Rocket.Chat: (42 commits) Chore: Major refactors in pageobjects (#26015) [BREAK] Remove show message in main thread preference (#26002) Regression: Webhook Integration Creation + string error toast msg (#26008) Chore: convert e2e to ts (#25958) Regression: Room Endpoint Call Issues (#25928) Chore: Fixes e2e playwright intermittences (#25984) Chore: Fuselage update (#26004) Chore: Small fix on callProvider (#25963) [FIX] Initial members value on Create Channel Modal (#26000) Chore: Migrate from meteor model to raw (#25756) Chore: VoIP Context (#25994) Chore: Fuselage update (#25983) [FIX] sidebar colors (#25987) Regression: Non-reactive routes (#25990) [BREAK] use urlParams on omnichannel/agent/extension/ (#25982) [FIX] toolbox menu behind thread component (#25925) [FIX] Sort by scope or creation date not working on canned responses list (#25475) Chore: Colors (#25969) Revert "[BREAK] use urlParams on omnichannel/agent/extension/" (#25980) Regression: Prevent Form Submit on Reset Click ...
Proposed changes (including videos or screenshots)
Issue(s)
Steps to test or reproduce
Further comments