revs_limit reset after DB compaction
------------------------------------
Key: COUCHDB-789
URL: https://issues.apache.org/jira/browse/COUCHDB-789
Project: CouchDB
Issue Type: Bug
Components: Database Core
Affects Versions: 0.11
Reporter: Filipe Manana
Attachments: revs_limit_preserved_after_db_compaction.patch
As reported by Erick Johnson in the users mailing list, after compaction, the
revs_limit parameter is not preserved.
Can easily be tested with:
$ curl -XPUT http://erick:[email protected]:5984/testing-compaction
{"ok":true}
$ curl -XPUT http://erick:[email protected]:5984/testing-compaction/_revs_limit
-d "100"
{"ok":true}
$ curl http://erick:[email protected]:5984/testing-compaction/_revs_limit
100
$ curl -XPOST http://erick:[email protected]:5984/testing-compaction/_compact
{"ok":true}
$ curl http://erick:[email protected]:5984/testing-compaction/_revs_limit
1000
The following patch fixes it.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.