Will Perry created COUCHDB-1936:
-----------------------------------
Summary: First inifile section ignored if at first line of file
Key: COUCHDB-1936
URL: https://issues.apache.org/jira/browse/COUCHDB-1936
Project: CouchDB
Issue Type: Bug
Components: Database Core
Reporter: Will Perry
If local.ini does not have a blank/comment as it's first line, then config
settings in the first section are ignored.
Imagine:
[couchdb]\n
uuid=fafaad266ad7c9ea492a2f857a699738\n
If this ini file is used, and couchdb is booted, a new UUID config setting will
be created, like:
[couchdb]\n
uuid=fafaad266ad7c9ea492a2f857a699738\n
\n
[couchdb]\n
uuid=123412341234123412341234123412\n
However, if the first line in the file is **not** a section start (i.e., a
comment or a new line) then this issue does not occur:
; this is a comment\n
[couchdb]\n
uuid=fafaad266ad7c9ea492a2f857a699738\n
--
This message was sent by Atlassian JIRA
(v6.1#6144)