You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by da...@apache.org on 2019/01/23 17:13:02 UTC

[couchdb] branch add-chttpd-stats updated (1f27026 -> 2c333f4)

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

davisp pushed a change to branch add-chttpd-stats
in repository https://gitbox.apache.org/repos/asf/couchdb.git.


 discard 1f27026  Implement customizable chttpd statistics
     new 6cb0506  Add new /{db}/_sync_shards endpoint (admin-only) (#1811)
     new bfb9810  Fix python2 compatibility for couchup (#1868)
     new c5d9cfe  Add Global timeout for map/reduce queries
     new 33e3625  add default fabric request timeouts
     new 666ae21  Don't crash test on a response without Content-Type
     new 841de8c  Add a test for a doc read with etag
     new 4904e4c  Add ability to feature flag partitioned db's
     new 00ce1c1  default config for partition feature flag
     new a1a1dac  Update to mochiweb 2.19.0
     new feaf3da  Blacklist known bad Erlang releases, fixes #1857 (#1871)
     new 1fdfe46  Make _all_docs and view query limits configurable
     new 2c333f4  Implement customizable chttpd statistics

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   (1f27026)
            \
             N -- N -- N   refs/heads/add-chttpd-stats (2c333f4)

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.

The 11560 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .travis.yml                                        |   5 +-
 rebar.config.script                                |  39 ++++-
 rel/overlay/bin/couchup                            |   2 +-
 rel/overlay/etc/default.ini                        |  14 ++
 src/chttpd/src/chttpd_auth_request.erl             |   2 +
 src/chttpd/src/chttpd_db.erl                       |  63 ++++++++
 src/chttpd/test/chttpd_socket_buffer_size_test.erl | 163 +++++++++++++++++++++
 src/couch/test/couch_flags_tests.erl               |   6 +-
 src/couch_mrview/include/couch_mrview.hrl          |   3 +-
 src/couch_mrview/src/couch_mrview_util.erl         |  30 +++-
 src/fabric/src/fabric_util.erl                     |   9 +-
 src/fabric/src/fabric_view_all_docs.erl            |   2 +-
 src/fabric/src/fabric_view_map.erl                 |   2 +-
 src/fabric/src/fabric_view_reduce.erl              |   2 +-
 src/mem3/src/mem3_httpd.erl                        |  20 ++-
 src/mem3/src/mem3_httpd_handlers.erl               |   1 +
 test/elixir/lib/couch.ex                           |   4 +-
 test/elixir/test/basics_test.exs                   |  11 ++
 test/elixir/test/partition_all_docs_test.exs       |  81 ++++++++++
 test/elixir/test/partition_view_test.exs           |  60 ++++++++
 20 files changed, 504 insertions(+), 15 deletions(-)
 create mode 100644 src/chttpd/test/chttpd_socket_buffer_size_test.erl