You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by wo...@apache.org on 2018/03/27 07:06:41 UTC

[couchdb] branch daemon-spaces updated (6f987ae -> b163663)

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

wohali pushed a change to branch daemon-spaces
in repository https://gitbox.apache.org/repos/asf/couchdb.git.


    from 6f987ae  Merge branch 'master' into daemon-spaces
     add f28d896  make it so
     add 3621725  add bootstrap
     add 0f559a9  add ignore
     add 58c4948  add http stub
     add e8c4966  add basic action handling
     add a5213f7  add Apache License stanza everywhere
     add 404692f  add the plan to readme
     add ecf310a  add note about skipping a step if the node is already setup
     add 38eaa88  add delete_node API
     add 9f1fa23  hack for storing erlang cookie value on new nodes
     add 068bdf1  add action hints
     add 94eab12  add license
     add 3ad82e5  remove leftover
     add 317e5a4  formatting
     add 0145bae  formatting & clarification
     add bc41677  mroe formatting
     add 277ca66  wip: implement setup handling
     add 92da54e  wip: full receive feature, setup now works yay
     add fc39fab  add simple test script
     add 354647b  add finish cluster routine
     add 7c6c3bb  add some more testing
     add 4c423e6  s/_cassim/cassim/ for the time being
     add 7528f5b  add license header
     add 0a676fc  add testing instructions to readme
     add 3304add  hash admin passwords, more resilient port parsing
     add 14e0374  handle GET cluster state
     add 9c3eb0a  show cluster finished state
     add be52f7e  R14 compatibility
     add 9728b34  Remove error-handling clause
     add cd7d0ec  Fix LICENSE indention
     add deeb073  Rename cassim db to _metadata
     add 127e85a  Use _nodes db
     add 372dd8b  fix tests
     add ecb601b  Create _global_changes database on cluster setup
     add 616789b  cluster_enable: add remote_node feature
     add f4fd3fa  whitespace fix
     add aa17a55  use couch_log instead of io:format
     add 5c0e927  Use dynamic handlers
     add ff19be1  add catch-all clause for url_handler
     add bdb8a0c  configure the right http interface
     add 647ffbc  fix enable_cluster_http for admin-party clusters
     add fb61c04  Update to new couch_epi API
     add d0a9b72  Pass supervisor's children to couch_epi
     add 747144e  Return HTTP 200 on GET
     add b9e1f3b  Return HTTP 405 for unsupported request method
     add e8d1e32  feat: cassim is off for now
     add 75a7682  require nodecount on setup
     add dd68945  use config:setineger/3
     add b107042  fix wording
     add 401d776  Merge remote-tracking branch 'robertkowalski/2594-2598-number-of-nodes'
     add 2590fbc  Fixed some minor errors in the documentation.
     add d75693e  add_node: Don't fail if node name != "couchdb" or "node1"
     add b2b93c1  Merge remote-tracking branch 'adrienverge/COUCHDB-3119'
     add 54623ce  fix cluster setup: use same admin pq salt on all nodes
     add c38d7aa  Merge remote-tracking branch 'asf/salt-distribution'
     add 18314a6  Add support for new ensure_dbs_exist option to GET, POST/finish_cluster
     add 92dd9d1  Add new enable_single_node action for cluster_setup endpoint
     add e153d48  address comments from rnewson
     add d61381a  fix typo/compilation error
     add 942c665  chore: whitespace
     add 4b90eca  chore: better log output
     add 4d9bd58  Merge branch '593-setup-single-node' of https://github.com/apache/couchdb-setup
     add 68545af  fix: make sure cluster setups do not exceed n=3 by default
     add 9fd7f44  Merge branch 'fix/node-count' of https://github.com/apache/couchdb-setup
     add 2f725d9  Import couchdb-setup
     add e282d70  Update rebar.config for local src/setup
     add 1a040a4  Merge pull request #1243 from apache/import-setup-again
     new b163663  Merge branch 'master' into daemon-spaces

The 1 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:
 .gitignore                                         |   1 -
 rebar.config.script                                |   4 +-
 src/setup/.gitignore                               |   4 +
 src/{global_changes => setup}/LICENSE              |   0
 src/setup/README.md                                | 193 ++++++++++++++
 .../src/setup.app.src}                             |  15 +-
 src/setup/src/setup.erl                            | 289 +++++++++++++++++++++
 .../couch_epi_app.erl => setup/src/setup_app.erl}  |  11 +-
 .../src/mem3_epi.erl => setup/src/setup_epi.erl}   |   7 +-
 src/setup/src/setup_httpd.erl                      | 169 ++++++++++++
 .../src/setup_httpd_handlers.erl}                  |   3 +-
 .../src/setup_sup.erl}                             |  19 +-
 src/setup/test/t-frontend-setup.sh                 |  63 +++++
 src/setup/test/t-single-node.sh                    |  46 ++++
 src/setup/test/t.sh                                |  63 +++++
 15 files changed, 866 insertions(+), 21 deletions(-)
 create mode 100644 src/setup/.gitignore
 copy src/{global_changes => setup}/LICENSE (100%)
 create mode 100644 src/setup/README.md
 copy src/{couch_plugins/src/couch_plugins.app.src => setup/src/setup.app.src} (71%)
 create mode 100644 src/setup/src/setup.erl
 copy src/{couch_epi/src/couch_epi_app.erl => setup/src/setup_app.erl} (69%)
 copy src/{mem3/src/mem3_epi.erl => setup/src/setup_epi.erl} (91%)
 create mode 100644 src/setup/src/setup_httpd.erl
 copy src/{couch/src/couch_httpd_handlers.erl => setup/src/setup_httpd_handlers.erl} (86%)
 copy src/{couch_peruser/src/couch_peruser_sup.erl => setup/src/setup_sup.erl} (57%)
 create mode 100755 src/setup/test/t-frontend-setup.sh
 create mode 100755 src/setup/test/t-single-node.sh
 create mode 100755 src/setup/test/t.sh

-- 
To stop receiving notification emails like this one, please contact
wohali@apache.org.

[couchdb] 01/01: Merge branch 'master' into daemon-spaces

Posted by wo...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

wohali pushed a commit to branch daemon-spaces
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit b163663050f5da62ee9aec5a48dbead8391594c1
Merge: 6f987ae 1a040a4
Author: Joan Touzet <wo...@users.noreply.github.com>
AuthorDate: Tue Mar 27 03:06:39 2018 -0400

    Merge branch 'master' into daemon-spaces

 .gitignore                             |   1 -
 rebar.config.script                    |   4 +-
 src/setup/.gitignore                   |   4 +
 src/setup/LICENSE                      | 203 +++++++++++++++++++++++
 src/setup/README.md                    | 193 ++++++++++++++++++++++
 src/setup/src/setup.app.src            |  27 +++
 src/setup/src/setup.erl                | 289 +++++++++++++++++++++++++++++++++
 src/setup/src/setup_app.erl            |  28 ++++
 src/setup/src/setup_epi.erl            |  49 ++++++
 src/setup/src/setup_httpd.erl          | 169 +++++++++++++++++++
 src/setup/src/setup_httpd_handlers.erl |  22 +++
 src/setup/src/setup_sup.erl            |  38 +++++
 src/setup/test/t-frontend-setup.sh     |  63 +++++++
 src/setup/test/t-single-node.sh        |  46 ++++++
 src/setup/test/t.sh                    |  63 +++++++
 15 files changed, 1196 insertions(+), 3 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
wohali@apache.org.