summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorPaul Buetow <pbuetow@mimecast.com>2022-01-27 17:08:13 +0000
committerPaul Buetow <pbuetow@mimecast.com>2022-01-27 17:08:13 +0000
commit4c1059dc98b3acf2fd985aec8a181c2e3117cbe9 (patch)
treee60683282d1458b943b920fa403d7e40c51d4043 /doc
parentcc6f19f69d0fb34af96e17147b2030c352d46845 (diff)
Dont auto lowercase all mapreduce keys
Diffstat (limited to 'doc')
-rw-r--r--doc/logformats.md2
1 files changed, 1 insertions, 1 deletions
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