From 4c1059dc98b3acf2fd985aec8a181c2e3117cbe9 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Thu, 27 Jan 2022 17:08:13 +0000 Subject: Dont auto lowercase all mapreduce keys --- doc/logformats.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/logformats.md b/doc/logformats.md index dd49c7c..c3f0c63 100644 --- a/doc/logformats.md +++ b/doc/logformats.md @@ -47,7 +47,7 @@ func (p *Parser) MakeFieldsGENERIGKV(maprLine string) (map[string]string, error) // dlog.Common.Debug("Unable to parse key-value token, ignoring it", kv) continue } - fields[strings.ToLower(keyAndValue[0])] = keyAndValue[1] + fields[keyAndValue[0]] = keyAndValue[1] } return fields, nil -- cgit v1.2.3