rnewson commented on a change in pull request #32:
URL: https://github.com/apache/couchdb-config/pull/32#discussion_r711990569
##########
File path: src/config.erl
##########
@@ -403,8 +403,9 @@ parse_ini_file(IniFile) ->
";" ++ _Comment ->
{AccSectionName, AccValues};
Line2 ->
- case re:split(Line2, "\s?=\s?", [{return, list}]) of
Review comment:
would `"\s?(?<!\\\\)=\s?"` work here? (that is, split the string only on
`=` when not immediately preceded by `\`.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]