From 1ede54540849e1286fddedf0512b85671c737904 Mon Sep 17 00:00:00 2001 From: tuxthepenguin Date: Sat, 23 Apr 2022 13:04:43 +0200 Subject: [PATCH] Fix lint error Committer: tuxthepenguin --- pkg/config/config.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/config/config.go b/pkg/config/config.go index 6338129a3..9e7bedb38 100644 --- a/pkg/config/config.go +++ b/pkg/config/config.go @@ -78,9 +78,9 @@ const ( DatabaseMaxIdleConnections Key = `database.maxidleconnections` DatabaseMaxConnectionLifetime Key = `database.maxconnectionlifetime` DatabaseSslMode Key = `database.sslmode` - DatabaseSslCert Key = `database.sslcert` - DatabaseSslKey Key = `database.sslkey` - DatabaseSslRootCert Key = `database.sslrootcert` + DatabaseSslCert Key = `database.sslcert` + DatabaseSslKey Key = `database.sslkey` + DatabaseSslRootCert Key = `database.sslrootcert` DatabaseTLS Key = `database.tls` CacheEnabled Key = `cache.enabled`