From 523dee88013e64fefbd5678b2938d7a258124fed Mon Sep 17 00:00:00 2001 From: Livio Spring Date: Fri, 8 Sep 2023 17:44:34 +0200 Subject: [PATCH] chore: remove postgres beta warning (#6394) fix: remove postgres beta warning Co-authored-by: Fabi --- internal/database/postgres/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/database/postgres/config.go b/internal/database/postgres/config.go index 5521891685..bacd099484 100644 --- a/internal/database/postgres/config.go +++ b/internal/database/postgres/config.go @@ -8,6 +8,7 @@ import ( "github.com/mitchellh/mapstructure" "github.com/zitadel/logging" + "github.com/zitadel/zitadel/internal/database/dialect" ) @@ -62,7 +63,6 @@ func (c *Config) Decode(configs []interface{}) (dialect.Connector, error) { } func (c *Config) Connect(useAdmin bool) (*sql.DB, error) { - logging.Warn("postgres is currently in beta") db, err := sql.Open("pgx", c.String(useAdmin)) if err != nil { return nil, err