From fc0bf33412803a7178ba19963dd0d53233bf3ad8 Mon Sep 17 00:00:00 2001 From: soup Date: Tue, 12 Dec 2023 20:35:12 +0100 Subject: [PATCH] fix(config): PostgresExtraParams struct tag (#1294) fix: PostgresExtraParams to lowercase in Config --- internal/domain/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/domain/config.go b/internal/domain/config.go index 256a6a6..8a83195 100644 --- a/internal/domain/config.go +++ b/internal/domain/config.go @@ -23,7 +23,7 @@ type Config struct { PostgresUser string `toml:"postgresUser"` PostgresPass string `toml:"postgresPass"` PostgresSSLMode string `toml:"postgresSSLMode"` - PostgresExtraParams string `toml:"PostgresExtraParams"` + PostgresExtraParams string `toml:"postgresExtraParams"` } type ConfigUpdate struct {