mirror of
https://github.com/nextcloud/server.git
synced 2026-06-11 01:30:50 -04:00
Increase the "bad waiting time" for cron mode to 24h to account for "time insensitive" jobs
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
a93f8b6945
commit
c6ccd39b05
1 changed files with 1 additions and 1 deletions
|
|
@ -138,7 +138,7 @@ export default {
|
|||
return Date.now() / 1000 - this.cronMaxAge > 12 * 3600 && this.backgroundJobsMode !== 'cron'
|
||||
},
|
||||
longExecutionCron() {
|
||||
return Date.now() / 1000 - this.cronMaxAge > 12 * 3600 && this.backgroundJobsMode === 'cron'
|
||||
return Date.now() / 1000 - this.cronMaxAge > 24 * 3600 && this.backgroundJobsMode === 'cron'
|
||||
},
|
||||
},
|
||||
methods: {
|
||||
|
|
|
|||
Loading…
Reference in a new issue