From 982934cbd34941255181e7cc418c120a4759507a Mon Sep 17 00:00:00 2001 From: LeartBeqiraj Date: Wed, 15 Nov 2023 21:09:25 +0100 Subject: [PATCH] fixed lint issues --- exporter/clickhouseexporter/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exporter/clickhouseexporter/config.go b/exporter/clickhouseexporter/config.go index 0a4ed0fd134f..1b1b7ed9640a 100644 --- a/exporter/clickhouseexporter/config.go +++ b/exporter/clickhouseexporter/config.go @@ -49,7 +49,7 @@ const defaultDatabase = "default" var ( errConfigNoEndpoint = errors.New("endpoint must be specified") errConfigInvalidEndpoint = errors.New("endpoint must be url format") - errConfigTTL = errors.New("Both 'ttl_days' and 'ttl' can not be provided. 'ttl_days' is deprecated, use 'ttl' instead.") + errConfigTTL = errors.New("both 'ttl_days' and 'ttl' can not be provided. 'ttl_days' is deprecated, use 'ttl' instead") ) // Validate the clickhouse server configuration.