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 2019/11/21 16:35:42 UTC

[couchdb] branch fdb-node-types updated (b374987 -> e703a0f)

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

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


 discard b374987  Draft implementation of node types
     add 2d3737c  Support regexp based blacklist in config
     add c9b8e25  Implement fabric2_server:fdb_cluster/0
     add e93d1b4  Add ctrace application
     add 98bc5ea  Trace http endpoints
     add 4680884  Trace fdb transactions
     add e703a0f  Implement node types

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   (b374987)
            \
             N -- N -- N   refs/heads/fdb-node-types (e703a0f)

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                                         |   5 +
 rebar.config.script                                |   5 +
 rel/overlay/etc/default.ini                        |  50 ++-
 src/chttpd/src/chttpd.app.src                      |   1 +
 src/chttpd/src/chttpd.erl                          | 114 +++++-
 src/chttpd/src/chttpd_handlers.erl                 |   7 +-
 src/chttpd/src/chttpd_httpd_handlers.erl           |  30 +-
 src/chttpd/src/chttpd_sup.erl                      |   9 +-
 src/couch/src/couch_util.erl                       |  37 +-
 src/couch_views/src/couch_views_server.erl         |   3 +-
 src/ctrace/README.md                               | 291 +++++++++++++++
 src/{fabric => ctrace}/rebar.config                |   0
 .../couch_js.app.src => ctrace/src/ctrace.app.src} |  16 +-
 src/ctrace/src/ctrace.erl                          | 361 ++++++++++++++++++
 .../eunit.config => src/ctrace/src/ctrace.hrl      |   8 +-
 .../couch_js_app.erl => ctrace/src/ctrace_app.erl} |  11 +-
 src/ctrace/src/ctrace_config.erl                   | 133 +++++++
 src/ctrace/src/ctrace_dsl.erl                      | 106 ++++++
 .../couch_js_sup.erl => ctrace/src/ctrace_sup.erl} |  26 +-
 src/ctrace/test/ctrace_config_test.erl             | 153 ++++++++
 src/ctrace/test/ctrace_dsl_test.erl                | 123 ++++++
 src/ctrace/test/ctrace_test.erl                    | 412 +++++++++++++++++++++
 src/fabric/src/fabric.app.src                      |   1 +
 src/fabric/src/fabric2_fdb.erl                     |  47 ++-
 src/fabric/src/fabric2_node_types.erl              |  23 +-
 src/fabric/src/fabric2_server.erl                  |  35 +-
 src/fabric/test/fabric2_dir_prefix_tests.erl       |   2 +-
 src/fabric/test/fabric2_node_types_tests.erl       |  73 ++++
 28 files changed, 1976 insertions(+), 106 deletions(-)
 create mode 100644 src/ctrace/README.md
 copy src/{fabric => ctrace}/rebar.config (100%)
 copy src/{couch_js/src/couch_js.app.src => ctrace/src/ctrace.app.src} (78%)
 create mode 100644 src/ctrace/src/ctrace.erl
 copy rel/files/eunit.config => src/ctrace/src/ctrace.hrl (80%)
 copy src/{couch_js/src/couch_js_app.erl => ctrace/src/ctrace_app.erl} (90%)
 create mode 100644 src/ctrace/src/ctrace_config.erl
 create mode 100644 src/ctrace/src/ctrace_dsl.erl
 copy src/{couch_js/src/couch_js_sup.erl => ctrace/src/ctrace_sup.erl} (71%)
 create mode 100644 src/ctrace/test/ctrace_config_test.erl
 create mode 100644 src/ctrace/test/ctrace_dsl_test.erl
 create mode 100644 src/ctrace/test/ctrace_test.erl
 create mode 100644 src/fabric/test/fabric2_node_types_tests.erl