mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Reduce refresh-all-feeds priority
This commit is contained in:
parent
e06ff24cea
commit
d2491d3eb7
1 changed files with 7 additions and 1 deletions
|
|
@ -94,7 +94,13 @@ export const queueRSSRefreshAllFeedsJob = async () => {
|
|||
if (!queue) {
|
||||
return false
|
||||
}
|
||||
return queue.add('refresh-all-feeds', {})
|
||||
return queue.add(
|
||||
'refresh-all-feeds',
|
||||
{},
|
||||
{
|
||||
priority: 100,
|
||||
}
|
||||
)
|
||||
}
|
||||
|
||||
type QueuePriority = 'low' | 'high'
|
||||
|
|
|
|||
Loading…
Reference in a new issue