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/16 21:45:28 UTC

[couchdb] 23/24: Update ./dev/run to not auto-create _global_changes

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

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

commit 3f9894fcc278438e9459339b88806f0f7c4478c3
Author: Nick Vatamaniuc <va...@gmail.com>
AuthorDate: Wed Apr 14 03:05:02 2021 -0400

    Update ./dev/run to not auto-create _global_changes
---
 dev/run | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev/run b/dev/run
index 9aa95ca..3fe1b33 100755
--- a/dev/run
+++ b/dev/run
@@ -794,7 +794,7 @@ def try_request(
 
 
 def create_system_databases(host, port):
-    for dbname in ["_users", "_replicator", "_global_changes"]:
+    for dbname in ["_users", "_replicator"]:
         conn = httpclient.HTTPConnection(host, port)
         conn.request("HEAD", "/" + dbname)
         resp = conn.getresponse()