From 6fdf756a4d60bc33cbbb407866d37502b1b2c29c Mon Sep 17 00:00:00 2001 From: Daria Voytova Date: Wed, 3 May 2017 15:03:48 +0300 Subject: [PATCH] Drop URL validation on ElasticSearch for apiUmbrella form For OpenShift/Kubernetes (or cloud services) Elasticsearch can be available by host name and the previously regex doesn't allow adding just 'http://elasticsearch' --- proxies/collection/schemas/api_umbrella.js | 1 - 1 file changed, 1 deletion(-) diff --git a/proxies/collection/schemas/api_umbrella.js b/proxies/collection/schemas/api_umbrella.js index 89ba3a46ea..3601c72de7 100644 --- a/proxies/collection/schemas/api_umbrella.js +++ b/proxies/collection/schemas/api_umbrella.js @@ -23,6 +23,5 @@ export default { }, 'apiUmbrella.elasticsearch': { type: String, - regEx: SimpleSchema.RegEx.Url, }, };