refine article filtering to ensure only usable articles are returned
This commit is contained in:
parent
bfb52b1fd9
commit
5f2aa7f591
1 changed files with 2 additions and 1 deletions
|
|
@ -98,7 +98,8 @@ function startScheduler() {
|
|||
|
||||
try {
|
||||
const concurrency = Number(config.contentBackfill?.concurrency) || 5;
|
||||
await backfillMissingContent(-1, concurrency);
|
||||
const perSource = Number(config.contentBackfill?.perSource) || 50;
|
||||
await backfillMissingContent(perSource, concurrency);
|
||||
} catch (error) {
|
||||
console.error('content backfill failed:', error);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue