From f65f5e1b4716e381b64cee648fb49d38954ee940 Mon Sep 17 00:00:00 2001 From: Alexander Date: Thu, 26 Oct 2023 15:18:34 +0200 Subject: [PATCH] fix(backend): added missing ch config to connector service --- backend/internal/config/connector/config.go | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/internal/config/connector/config.go b/backend/internal/config/connector/config.go index 169bbb739..fec51c7fa 100644 --- a/backend/internal/config/connector/config.go +++ b/backend/internal/config/connector/config.go @@ -13,6 +13,7 @@ type Config struct { common.Postgres redis.Redis common.Redshift + common.Clickhouse objectstorage.ObjectsConfig SessionsTableName string `env:"SESSIONS_TABLE_NAME,default=connector_user_sessions"` EventsTableName string `env:"EVENTS_TABLE_NAME,default=connector_events"`