Details
-
Bug
-
Status: Resolved
-
Blocker
-
Resolution: Fixed
-
1.0.2
-
Dont Know
Description
We have a cluster of many couches replicating between each other, and are using a view to find conflicts for resolution. However, running the view with include_docs returns doc: null for some id/rev pairs. These revisions can be retrieved using a simple GET, and appear as expected in the open_revs list.
map: function(doc) {
if (doc._conflicts) {
emit(doc._id, {_id: doc._id, _rev: doc._rev});
doc._conflicts.forEach(function(rev) {
emit(doc._id, {_id: doc._id, _rev: rev});
});
}
}
Attachments
Issue Links
- is related to
-
COUCHDB-1045 Replication reports "missing" for docs which exist and are accesible
-
- Resolved
-
- relates to
-
COUCHDB-1163 Document returned by id, but cannot be found by rev
-
- Resolved
-