From f628955a150d30ca437220ac779823d50d4ba626 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Fri, 6 Jan 2023 16:26:39 +0100 Subject: [PATCH] :bug: Set the same tenant default on backend and exporter --- backend/src/app/config.clj | 2 +- exporter/src/app/config.cljs | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/backend/src/app/config.clj b/backend/src/app/config.clj index c333be29f..8f7f1c7ea 100644 --- a/backend/src/app/config.clj +++ b/backend/src/app/config.clj @@ -61,7 +61,7 @@ :public-uri "http://localhost:3449" :host "localhost" - :tenant "main" + :tenant "default" :redis-uri "redis://redis/0" :srepl-host "127.0.0.1" diff --git a/exporter/src/app/config.cljs b/exporter/src/app/config.cljs index 48d0e5baf..6b9b46925 100644 --- a/exporter/src/app/config.cljs +++ b/exporter/src/app/config.cljs @@ -18,10 +18,10 @@ (def defaults {:public-uri "http://localhost:3449" - :tenant "dev" - :host "devenv" + :tenant "default" + :host "localhost" :http-server-port 6061 - :http-server-host "localhost" + :http-server-host "0.0.0.0" :redis-uri "redis://redis/0"}) (s/def ::http-server-port ::us/integer)