You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@couchdb.apache.org by "Filipe Manana (JIRA)" <ji...@apache.org> on 2010/06/08 18:10:11 UTC

[jira] Updated: (COUCHDB-789) revs_limit reset after DB compaction

     [ https://issues.apache.org/jira/browse/COUCHDB-789?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Filipe Manana updated COUCHDB-789:
----------------------------------

    Attachment: revs_limit_preserved_after_db_compaction.patch

> 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:foobar@127.0.0.40:5984/testing-compaction
> {"ok":true}
> $ curl -XPUT http://erick:foobar@127.0.0.40:5984/testing-compaction/_revs_limit -d "100"
> {"ok":true}
> $ curl http://erick:foobar@127.0.0.40:5984/testing-compaction/_revs_limit
> 100
> $ curl -XPOST http://erick:foobar@127.0.0.40:5984/testing-compaction/_compact
> {"ok":true}
> $ curl http://erick:foobar@127.0.0.40: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.