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 2021/04/27 16:56:14 UTC

[couchdb] branch improve-retry-handling-in-dbs-endpoints updated (979a597 -> 2d574b0)

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

vatamane pushed a change to branch improve-retry-handling-in-dbs-endpoints
in repository https://gitbox.apache.org/repos/asf/couchdb.git.


 discard 979a597  Improve transaction retry behavior for _all_dbs, _dbs_info and _deleted_dbs
 discard 12c34bb  Improve tx retry resilience when transaction restart
     add 845f917  Create couch_lib application
     add 94bcb53  Add couch_lib_parse:parse_{boolean|integer|non_neg_integer}
     add 4f36e46  Merge pull request #3529 from cloudant/create_couch_lib
     add 33ca754  Fix flaky couch_jobs metadata test
     add 10be4b9  Improve tx retry resilience when transaction restart
     add 2d574b0  Improve transaction retry behavior for _all_dbs, _dbs_info and _deleted_dbs

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   (979a597)
            \
             N -- N -- N   refs/heads/improve-retry-handling-in-dbs-endpoints (2d574b0)

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:
 rebar.config.script                                |  1 +
 rel/reltool.config                                 |  2 +
 src/couch_jobs/test/couch_jobs_tests.erl           |  6 ++-
 src/couch_lib/.gitignore                           | 21 ++++++++
 src/couch_lib/README.md                            | 28 ++++++++++
 .../src/couch_lib.app.src}                         | 13 +++--
 src/couch_lib/src/couch_lib_parse.erl              | 61 ++++++++++++++++++++++
 src/couch_views/src/couch_views.app.src            |  1 +
 src/couch_views/src/couch_views_http_util.erl      | 41 ++++-----------
 src/couch_views/test/couch_views_server_test.erl   |  3 +-
 src/fabric/test/fabric2_db_crud_tests.erl          |  4 +-
 11 files changed, 138 insertions(+), 43 deletions(-)
 create mode 100644 src/couch_lib/.gitignore
 create mode 100644 src/couch_lib/README.md
 copy src/{couch_eval/src/couch_eval.app.src => couch_lib/src/couch_lib.app.src} (80%)
 create mode 100644 src/couch_lib/src/couch_lib_parse.erl