From b6cc82bbe152ccb2aa6c833bdc699c2b1c95b1aa Mon Sep 17 00:00:00 2001 From: Timothy Sullivan Date: Thu, 4 Jun 2020 09:48:07 -0700 Subject: [PATCH] [Reporting] Adds the enabled key to schema --- x-pack/plugins/reporting/server/config/schema.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/x-pack/plugins/reporting/server/config/schema.ts b/x-pack/plugins/reporting/server/config/schema.ts index dfabfa98f8cbf..b1234a6ddf0b6 100644 --- a/x-pack/plugins/reporting/server/config/schema.ts +++ b/x-pack/plugins/reporting/server/config/schema.ts @@ -162,6 +162,7 @@ const PollSchema = schema.object({ }); export const ConfigSchema = schema.object({ + enabled: schema.boolean({ defaultValue: true }), kibanaServer: KibanaServerSchema, queue: QueueSchema, capture: CaptureSchema,