You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ko...@apache.org on 2021/10/27 12:17:34 UTC

[couchdb] branch 3788-changes-rewind-nodedown updated (5aafa06 -> cacd70e)

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

kocolosk pushed a change to branch 3788-changes-rewind-nodedown
in repository https://gitbox.apache.org/repos/asf/couchdb.git.


    from 5aafa06  Add fabric_view_changes warning logs when sequences get reset
     add 24bc0ce  Include shard uuids in db_info update sequences
     add bdde402  Move custodian VDU to a BDU and fix _all_dbs off-by-one limit bug
     add c1bb4e4  Add libicu version fetching and emit it in the _node/_local/_versions
     add 56f4817  Fix flaky retain_stats replicator test
     add 84d9234  Fix flaky mem3_bdu test
     add 8513c5b  Eliminate eunit compiler warnings
     add cacd70e  Merge branch '3.x' into 3788-changes-rewind-nodedown

No new revisions were added by this update.

Summary of changes:
 src/chttpd/src/chttpd_node.erl                     |  28 ++-
 .../priv/couch_ejson_compare/couch_ejson_compare.c |  38 ++-
 src/couch/src/couch_ejson_compare.erl              |  22 +-
 src/couch/src/couch_server.erl                     |   3 +-
 src/couch/test/eunit/couch_ejson_compare_tests.erl |  20 ++
 src/couch/test/eunit/couch_util_tests.erl          |  18 --
 .../test/eunit/couch_prometheus_e2e_tests.erl      |  10 +-
 ...ch_replicator_retain_stats_between_job_runs.erl |  20 +-
 src/custodian/src/custodian.hrl                    |  49 ----
 src/custodian/src/custodian_util.erl               |  51 ++--
 src/dreyfus/test/dreyfus_blacklist_await_test.erl  |   4 +-
 src/dreyfus/test/dreyfus_purge_test.erl            |  14 +-
 src/dreyfus/test/dreyfus_test_util.erl             |   4 +-
 src/fabric/src/fabric_db_info.erl                  |   9 +-
 src/fabric/src/fabric_view_changes.erl             |  19 ++
 ...db_uuids_tests.erl => fabric_db_info_tests.erl} |  45 ++--
 src/{fabric => mem3}/rebar.config                  |   0
 src/mem3/src/mem3_bdu.erl                          | 112 +++++++++
 src/mem3/test/eunit/mem3_bdu_test.erl              | 280 +++++++++++++++++++++
 src/mem3/test/eunit/mem3_reshard_test.erl          |   1 -
 test/elixir/test/basics_test.exs                   |  11 +
 test/elixir/test/config/suite.elixir               |   1 +
 test/elixir/test/replication_test.exs              |   4 +-
 23 files changed, 616 insertions(+), 147 deletions(-)
 delete mode 100644 src/custodian/src/custodian.hrl
 copy src/fabric/test/eunit/{fabric_db_uuids_tests.erl => fabric_db_info_tests.erl} (53%)
 copy src/{fabric => mem3}/rebar.config (100%)
 create mode 100644 src/mem3/src/mem3_bdu.erl
 create mode 100644 src/mem3/test/eunit/mem3_bdu_test.erl