Skip to content

Commit fc9831c

Browse files
committed
Remove use of undefined import
1 parent bb8e505 commit fc9831c

File tree

1 file changed

+1
-3
lines changed
  • x-pack/plugins/rollup/public/crud_app/sections/job_create/steps_config

1 file changed

+1
-3
lines changed

x-pack/plugins/rollup/public/crud_app/sections/job_create/steps_config/index.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77

88
import { cloneDeep, get, pick } from 'lodash';
99

10-
import { WEEK } from '../../../../../../../../src/plugins/es_ui_shared/public';
11-
1210
import { validateId } from './validate_id';
1311
import { validateIndexPattern } from './validate_index_pattern';
1412
import { validateRollupIndex } from './validate_rollup_index';
@@ -66,7 +64,7 @@ export const stepIdToStepConfigMap = {
6664
// a few hours as they're being restarted. A delay of 1d would allow them that period to reboot
6765
// and the "expense" is pretty negligible in most cases: 1 day of extra non-rolled-up data.
6866
rollupDelay: '1d',
69-
cronFrequency: WEEK,
67+
cronFrequency: 'WEEK',
7068
fieldToPreferredValueMap: {},
7169
};
7270

0 commit comments

Comments
 (0)