mirror of
https://github.com/miniflux/v2.git
synced 2025-08-01 17:38:37 +00:00
Add FORCE_REFRESH_INTERVAL
config option
This commit is contained in:
parent
a1879ea37c
commit
4590da2fc3
23 changed files with 126 additions and 20 deletions
|
@ -142,6 +142,8 @@ func (p *Parser) parseLines(lines []string) (err error) {
|
|||
p.opts.workerPoolSize = parseInt(value, defaultWorkerPoolSize)
|
||||
case "POLLING_FREQUENCY":
|
||||
p.opts.pollingFrequency = parseInt(value, defaultPollingFrequency)
|
||||
case "FORCE_REFRESH_INTERVAL":
|
||||
p.opts.forceRefreshInterval = parseInt(value, defaultForceRefreshInterval)
|
||||
case "BATCH_SIZE":
|
||||
p.opts.batchSize = parseInt(value, defaultBatchSize)
|
||||
case "POLLING_SCHEDULER":
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue