Skip to content

Commit 472dfd2

Browse files
authored
[Cases] - Enable cases numerical id service (#238555)
## Summary This PR enables the cases numerical id service ### Checklist Check the PR satisfies following conditions. Reviewers should verify this PR satisfies this list as well.
1 parent 53d2b03 commit 472dfd2

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

x-pack/platform/plugins/shared/cases/server/config.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ describe('config validation', () => {
110110
],
111111
},
112112
"incrementalId": Object {
113-
"enabled": false,
113+
"enabled": true,
114114
"taskIntervalMinutes": 10,
115115
"taskStartDelayMinutes": 10,
116116
},

x-pack/platform/plugins/shared/cases/server/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export const ConfigSchema = schema.object({
3131
/**
3232
* Whether the incremental id service should be enabled
3333
*/
34-
enabled: schema.boolean({ defaultValue: false }),
34+
enabled: schema.boolean({ defaultValue: true }),
3535
/**
3636
* The interval that the task should be scheduled at
3737
*/

x-pack/platform/test/plugin_api_integration/test_suites/task_manager/check_registered_task_types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,7 @@ export default function ({ getService }: FtrProviderContext) {
154154
'cai:cases_analytics_index_scheduler',
155155
'cai:cases_analytics_index_synchronization',
156156
'cases-telemetry-task',
157+
'cases_incremental_id_assignment',
157158
'cloud_security_posture-stats_task',
158159
'dashboard_telemetry',
159160
'endpoint:complete-external-response-actions',

0 commit comments

Comments
 (0)