Skip to content

Commit

Permalink
[Code] Update git repository update frequency (#41541)
Browse files Browse the repository at this point in the history
  • Loading branch information
mw-ding authored Jul 19, 2019
1 parent e6524bc commit e6c0810
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions x-pack/legacy/plugins/code/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,12 @@ export const code = (kibana: any) =>
queueIndex: Joi.string().default('.code_internal-worker-queue'),
// 1 hour by default.
queueTimeoutMs: Joi.number().default(moment.duration(1, 'hour').asMilliseconds()),
// The frequency which update scheduler executes. 5 minutes by default.
updateFrequencyMs: Joi.number().default(moment.duration(5, 'minute').asMilliseconds()),
// The frequency which update scheduler executes. 1 minute by default.
updateFrequencyMs: Joi.number().default(moment.duration(1, 'minute').asMilliseconds()),
// The frequency which index scheduler executes. 1 day by default.
indexFrequencyMs: Joi.number().default(moment.duration(1, 'day').asMilliseconds()),
// The frequency which each repo tries to update. 1 hour by default.
updateRepoFrequencyMs: Joi.number().default(moment.duration(1, 'hour').asMilliseconds()),
// The frequency which each repo tries to update. 5 minutes by default.
updateRepoFrequencyMs: Joi.number().default(moment.duration(5, 'minute').asMilliseconds()),
// The frequency which each repo tries to index. 1 day by default.
indexRepoFrequencyMs: Joi.number().default(moment.duration(1, 'day').asMilliseconds()),
// whether we want to show more logs
Expand Down

0 comments on commit e6c0810

Please sign in to comment.