-
Notifications
You must be signed in to change notification settings - Fork 1
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
#411 fix search sync #415
base: develop
Are you sure you want to change the base?
#411 fix search sync #415
Conversation
…into develop # Conflicts: # src/controllers/connector/Leaders.js # src/services/Connector.js
src/services/SearchSync.js
Outdated
@@ -176,10 +176,23 @@ class SearchSync extends BasicService { | |||
} | |||
} | |||
|
|||
async _getDocsToSync(model, from = new Date(null)) { | |||
return await await model.find({ | |||
async _getDocsToSync({ model, from = new Date(null), maxDocs = 200, sequenceKey }) { |
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.
Очень странная запись new Date(null)
, если нужна начала эпохи то лучше написать new Date(0)
потому что new Date(null)
как раз вернет начало эпохи.
Просто когда видишь в коде new Date(null)
то кажется что будет вообще Invalid Date
.
Я понимаю, что это было до этого PR, но если можно то лучше сейчас поправить.
src/services/SearchSync.js
Outdated
} | ||
} | ||
|
||
await Promise.all(syncPromises); |
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.
Всю эту конструкцию с Promise.all можно записать в более компактном и как я считаю понятном виде (без лишних переменных):
if (dataToSync.length > 0) {
await Promise.all(dataToSync.map(data => this._syncDoc(model, data)));
}
Кода меньше, нет лишних push и массива.
No description provided.