You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by va...@apache.org on 2020/09/01 07:40:11 UTC

[couchdb] branch prototype/fdb-replicator updated (1f0a8db -> 9770e9a)

This is an automated email from the ASF dual-hosted git repository.

vatamane pushed a change to branch prototype/fdb-replicator
in repository https://gitbox.apache.org/repos/asf/couchdb.git.


 discard 1f0a8db  Update and clean up tests
 discard 6eb1a7e  Update replicator's readme file
 discard 29f020c  Update and cleanup default.ini replicator entries
 discard a1694f4  Update replicator http handlers and supervisor
 discard 6ff1e00  Update backend replicator modules
 discard 2fba87a  Update frontend replicator modules
 discard 60d3805  Introduce couch_replicator_jobs abstraction module
 discard 87eef98  Update couch_replicator_ids
 discard 9c566b1  Handle option maps in lower level modules
 discard c2cc8ad  Move parsing and validation to couch_replicator_parse module
 discard b0798f8  Cleanup couch_replicator_utils module
 discard 7aadc86  Delete old 2.x-3.x replicator modules
 discard 849f3ba  Add fold_jobs/4 and pending_count/2,3 to couch_jobs API
 discard 6462725  Handle possible iodata from jiffy:encode in couch_jobs
 discard 6376ace  Read attachment data outside the transaction
 discard bc8e943  Add after_db_create/2 and after_db_delete/2 callbacks to fabric
     add 6235f0f  Fix ordering of page_size based pagination for views
     add 07e179f  Merge pull request #3094 from cloudant/use-key_docid
     add bf61a00  Handle empty maps in active_tasks data structure
     add 46b28bc  Add after_db_create/2 and after_db_delete/2 callbacks to fabric
     add aa6f4c3  Read attachment data outside the transaction
     add 9b5cd15  Handle possible iodata from jiffy:encode in couch_jobs
     add b89a23a  Add fold_jobs/4 and pending_count/2,3 to couch_jobs API
     add b30602d  Delete old 2.x-3.x replicator modules
     add 12a1f3e  Cleanup couch_replicator_utils module
     add d8b262f  Move parsing and validation to couch_replicator_parse module
     add 9377509  Handle option maps in lower level modules
     add 8c2c70a  Update couch_replicator_ids
     add 8acd9fb  Introduce couch_replicator_jobs abstraction module
     add 1018aaf  Update frontend replicator modules
     add ff6cd16  Update backend replicator modules
     add fc67a11  Update replicator http handlers and supervisor
     add 853f3c3  Update and cleanup default.ini replicator entries
     add 9bb017a  Update replicator's readme file
     add 9770e9a  Update and clean up tests

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (1f0a8db)
            \
             N -- N -- N   refs/heads/prototype/fdb-replicator (9770e9a)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 src/chttpd/src/chttpd_db.erl                       |   8 +-
 src/chttpd/src/chttpd_view.erl                     |   8 +-
 src/chttpd/test/exunit/pagination_test.exs         | 242 ++++++++++++++++++++-
 src/couch_replicator/src/couch_replicator_job.erl  |  26 ++-
 src/couch_replicator/src/couch_replicator_jobs.erl |   2 +-
 .../test/eunit/couch_replicator_filtered_tests.erl |  92 +++++++-
 src/couch_views/src/couch_views_http.erl           |  31 +--
 src/fabric/src/fabric2_active_tasks.erl            |   3 +-
 src/fabric/test/fabric2_active_tasks_tests.erl     | 120 ++++++++++
 9 files changed, 493 insertions(+), 39 deletions(-)
 create mode 100644 src/fabric/test/fabric2_active_tasks_tests.erl