This is an automated email from the ASF dual-hosted git repository.
rnewson pushed a change to branch reduce-intra-cluster-conflicts
in repository https://gitbox.apache.org/repos/asf/couchdb.git
omit b97768ce4 don't update followers where leader got conflicts
omit 0f43fb5fa start leaders first
omit 8a76d3fa2 refactor to allow delayed worker startup
add a04ac084d test: port 15-execution-stats-test from python to elixir
add d86bf6fe8 test: deprecate 15-execution-stats-test.py
add 6c3a5a156 test: port 19-find-conflicts from python to elixir
add ad7c3afc0 test: deprecate 19-find-conflicts.py
add afcfed69a test: port 10 disable array length field to elixir
add 0818957a5 test: deprecate 10 disable array length field python test
add f18a7b4ee Fix time_seq since function clause
add 6c3e889ad Allow infinity for auto purge ttl setting
add b6243b563 fix: reduce flakeyness of auto config reload test
add c43596967 fix: remove flakeyness from new elixir mango tests
add d5a1339f3 chore: fail elixir test after first error instead of waiting
for the whole suite
add 47a952f31 Merge branch 'main' into 10-disable-array-length-field-test
add bee31c168 Merge pull request #5781 from
neighbourhoodie/10-disable-array-length-field-test
add a1649129f improve flakiness of Auto-reload config test
add d8a3f1d4c Merge pull request #5907 from
apache/flaky-auto-reload-config-test
add 38b362b6e Merge branch 'main' into 19-find-conflicts
add 1160780db fix: typo
add 32e305d12 Merge pull request #5786 from
neighbourhoodie/19-find-conflicts
add dfa01c4b0 Merge branch 'main' into 15-execution-stats-test
add a1e7d2318 Merge pull request #5782 from
neighbourhoodie/15-execution-stats-test
add 74b2491cb refactor to allow delayed worker startup
add 18096e147 start leaders first
add 402916836 don't update followers where leader got conflicts
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 (b97768ce4)
\
N -- N -- N refs/heads/reduce-intra-cluster-conflicts (402916836)
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:
Makefile | 2 +-
rel/overlay/etc/default.ini | 8 +-
src/chttpd/src/chttpd_db.erl | 4 +
src/chttpd/test/eunit/chttpd_changes_test.erl | 8 +
src/couch/src/couch_auto_purge_plugin.erl | 21 ++-
.../test/eunit/couch_auto_purge_plugin_tests.erl | 38 ++++
src/docs/src/config/scanner.rst | 9 +-
src/fabric/src/fabric.erl | 2 +
.../test/10-disable-array-length-field-test.py | 43 -----
src/mango/test/15-execution-stats-test.py | 161 -----------------
src/mango/test/19-find-conflicts.py | 33 ----
test/elixir/test/config/search.elixir | 8 +
test/elixir/test/config/suite.elixir | 14 ++
test/elixir/test/config_test.exs | 5 +-
.../mango/10_disable_array_length_field_test.exs | 50 ++++++
test/elixir/test/mango/15_execution_stats_test.exs | 199 +++++++++++++++++++++
test/elixir/test/mango/19_find_conflicts.exs | 36 ++++
test/elixir/test/support/mango_database.ex | 26 ++-
18 files changed, 409 insertions(+), 258 deletions(-)
delete mode 100644 src/mango/test/10-disable-array-length-field-test.py
delete mode 100644 src/mango/test/15-execution-stats-test.py
delete mode 100644 src/mango/test/19-find-conflicts.py
create mode 100644
test/elixir/test/mango/10_disable_array_length_field_test.exs
create mode 100644 test/elixir/test/mango/15_execution_stats_test.exs
create mode 100644 test/elixir/test/mango/19_find_conflicts.exs