From 2b61b1768f287ac2acc875b47d8a75d16560d1a2 Mon Sep 17 00:00:00 2001 From: Alejandro Alonso Date: Fri, 3 Jun 2022 07:43:19 +0200 Subject: [PATCH] :bug: Fix exporter white list domains configuration --- exporter/src/app/config.cljs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exporter/src/app/config.cljs b/exporter/src/app/config.cljs index bdbccb122..47b835c60 100644 --- a/exporter/src/app/config.cljs +++ b/exporter/src/app/config.cljs @@ -26,7 +26,7 @@ :http-server-port 6061 :http-server-host "localhost" :redis-uri "redis://redis/0" - :exporter-domain-whitelist #{"localhost:3449"}}) + :domain-white-list #{"localhost:3449"}}) (s/def ::http-server-port ::us/integer) (s/def ::http-server-host ::us/string) @@ -45,7 +45,7 @@ ::http-server-host ::browser-pool-max ::browser-pool-min - ::domain-whitelist])) + ::domain-white-list])) (defn- read-env [prefix]