You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ja...@apache.org on 2021/09/01 10:01:54 UTC

[couchdb] branch feat/log-file-truncation updated (268b94b -> 41a03a2)

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

jan pushed a change to branch feat/log-file-truncation
in repository https://gitbox.apache.org/repos/asf/couchdb.git.


 discard 268b94b  feat(couch_file): log file path when a file was truncated from under us
     add f31e929  Fix response code for nonexistent attachment
     add 6f7b779  Contribute Custom Erlang network protocol to Apache
     add ba63878  Fix response code for existing att and wrong rev
     add cc05c03  fix(dev/run): allow -n > 5
     add ff1e656  Improve handling of + in urls 3.x
     add a247b7d  Ensure maybe_close message is sent to correct process (#3700)
     add 247dc02  Disable running ibrowse tests
     add 33a66dd  Update smoosh docs to use rpc:multicall
     add 1b8d4b7  Fix fauxton_root templating in bin/couchdb script
     add 4262714  Discard a payload on a delete attachment request
     add 9e3d540  fix: avoid dropping attachment chunks on quorum writes
     add c632dd3  Remove unused fabric_doc_attachments
     add e83935c  Avoid change feed rewinds after shard moves
     add 9716f88  Merge keys from rebar.config
     add 41a03a2  feat(couch_file): log file path when a file was truncated from under us

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   (268b94b)
            \
             N -- N -- N   refs/heads/feat/log-file-truncation (41a03a2)

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:
 .gitignore                                         |   3 +
 Makefile                                           |   3 +-
 configure                                          |  28 +++
 dev/{remsh => remsh-tls}                           |   3 +-
 dev/run                                            |   2 +-
 rebar.config.script                                |  12 +-
 rel/files/couchdb.in                               |   4 +-
 rel/overlay/bin/remsh                              |  35 ++--
 rel/overlay/etc/default.ini                        |   3 +
 rel/overlay/etc/vm.args                            |  33 ++++
 rel/reltool.config                                 |   2 +
 src/chttpd/src/chttpd.erl                          |   7 +-
 src/chttpd/src/chttpd_db.erl                       | 196 +++++++++++----------
 src/chttpd/test/eunit/chttpd_cors_test.erl         |  80 +++++----
 src/couch/.gitignore                               |   2 +
 src/couch/rebar.config.script                      |   7 +-
 src/couch/src/couch.app.src                        |   3 +-
 src/couch/src/couch_file.erl                       |   2 +-
 src/couch/src/couch_httpd.erl                      |   2 +-
 src/{couch => couch_dist}/LICENSE                  |  26 +--
 src/{rexi => couch_dist}/rebar.config              |   0
 .../src/couch_dist.app.src}                        |  11 +-
 src/couch_dist/src/couch_dist.erl                  | 108 ++++++++++++
 src/couch_dist/test/eunit/couch_dist_tests.erl     |  97 ++++++++++
 src/couch_index/src/couch_index.erl                |   2 +-
 src/fabric/src/fabric.erl                          |  15 +-
 ...ic_design_doc_count.erl => fabric_db_uuids.erl} |  49 +++---
 src/fabric/src/fabric_doc_attachments.erl          | 160 -----------------
 src/fabric/src/fabric_doc_atts.erl                 |  26 +--
 src/fabric/src/fabric_ring.erl                     |  54 +++++-
 src/fabric/src/fabric_rpc.erl                      |  10 +-
 src/fabric/src/fabric_util.erl                     |  55 ++++++
 src/fabric/src/fabric_view_changes.erl             |  57 +++++-
 ..._create_tests.erl => fabric_db_uuids_tests.erl} |  32 ++--
 .../test/eunit/fabric_moved_shards_seq_tests.erl   | 122 +++++++++++++
 src/smoosh/operator_guide.md                       |  63 +++----
 test/elixir/test/attachments_test.exs              |  24 +++
 test/elixir/test/basics_test.exs                   |  56 ++++++
 38 files changed, 949 insertions(+), 445 deletions(-)
 copy dev/{remsh => remsh-tls} (80%)
 copy src/{couch => couch_dist}/LICENSE (89%)
 copy src/{rexi => couch_dist}/rebar.config (100%)
 copy src/{couch_pse_tests/src/couch_pse_tests.app.src => couch_dist/src/couch_dist.app.src} (74%)
 create mode 100644 src/couch_dist/src/couch_dist.erl
 create mode 100644 src/couch_dist/test/eunit/couch_dist_tests.erl
 copy src/fabric/src/{fabric_design_doc_count.erl => fabric_db_uuids.erl} (51%)
 delete mode 100644 src/fabric/src/fabric_doc_attachments.erl
 copy src/fabric/test/eunit/{fabric_db_create_tests.erl => fabric_db_uuids_tests.erl} (62%)
 create mode 100644 src/fabric/test/eunit/fabric_moved_shards_seq_tests.erl