From e3744075a2a61c7c8e2d29531b11b3d37ff5a333 Mon Sep 17 00:00:00 2001 From: Ryan Mathis Date: Thu, 20 May 2021 14:23:47 -0700 Subject: [PATCH] Fixed validation --- .../main/resources/dynamic-http-metadata-provider.schema.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/src/main/resources/dynamic-http-metadata-provider.schema.json b/backend/src/main/resources/dynamic-http-metadata-provider.schema.json index f4f96fe4b..71cfd3ac3 100644 --- a/backend/src/main/resources/dynamic-http-metadata-provider.schema.json +++ b/backend/src/main/resources/dynamic-http-metadata-provider.schema.json @@ -116,7 +116,7 @@ { "properties": { "initializeFromPersistentCacheInBackground": { - "const": true + "enum": [true] }, "backgroundInitializationFromCacheDelay": { "title": "label.background-init-from-cache-delay", @@ -129,7 +129,7 @@ { "properties": { "initializeFromPersistentCacheInBackground": { - "const": false + "enum": [false] } } }