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 2020/01/29 16:34:27 UTC

[couchdb] branch master updated: Setup wizard: do not create _global_changes (#2497)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 040dca4  Setup wizard: do not create _global_changes (#2497)
040dca4 is described below

commit 040dca40e4829c7fb2f7131918f1592987897637
Author: Joan Touzet <wo...@users.noreply.github.com>
AuthorDate: Wed Jan 29 16:34:19 2020 +0000

    Setup wizard: do not create _global_changes (#2497)
---
 src/setup/src/setup.erl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/setup/src/setup.erl b/src/setup/src/setup.erl
index 12a3f43..3d23229 100644
--- a/src/setup/src/setup.erl
+++ b/src/setup/src/setup.erl
@@ -75,7 +75,7 @@ is_single_node_enabled(Dbs) ->
     end.
 
 cluster_system_dbs() ->
-    ["_users", "_replicator", "_global_changes"].
+    ["_users", "_replicator"].
 
 
 has_cluster_system_dbs([]) ->