From 9601a9caa9cce0c8a0a8752579f1751b841a0a26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=B6ran=20Sander?= Date: Wed, 23 Oct 2024 06:43:41 +0000 Subject: [PATCH] fix(config): Allow empty New Relic destination array in config file Fixes #929 --- src/lib/config-file-schema.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/config-file-schema.js b/src/lib/config-file-schema.js index 626a00f9..44135feb 100755 --- a/src/lib/config-file-schema.js +++ b/src/lib/config-file-schema.js @@ -72,7 +72,7 @@ export const confifgFileSchema = { properties: { enable: { type: 'boolean' }, destinationAccount: { - type: 'array', + type: ['array', 'null'], minItems: 0, items: { type: 'string',