You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by da...@apache.org on 2014/02/06 23:28:58 UTC

[1/3] couchdb commit: updated refs/heads/1843-feature-bigcouch to 3688eab

Updated Branches:
  refs/heads/1843-feature-bigcouch 152a21ad2 -> 3688eab9d


Update prefix path for dev/run configs


Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/3d7d6169
Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/3d7d6169
Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/3d7d6169

Branch: refs/heads/1843-feature-bigcouch
Commit: 3d7d61696542874b16d5b459cc269d28d94cda97
Parents: 152a21a
Author: Paul J. Davis <pa...@gmail.com>
Authored: Thu Feb 6 16:27:16 2014 -0600
Committer: Paul J. Davis <pa...@gmail.com>
Committed: Thu Feb 6 16:27:16 2014 -0600

----------------------------------------------------------------------
 dev/run | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb/blob/3d7d6169/dev/run
----------------------------------------------------------------------
diff --git a/dev/run b/dev/run
index e59a08b..1e40eb1 100755
--- a/dev/run
+++ b/dev/run
@@ -23,6 +23,7 @@ import select
 import subprocess as sp
 import sys
 import time
+import traceback
 import urllib
 
 
@@ -103,7 +104,7 @@ def write_configs(opts):
     for i in range(1,4):
         node = "node%d" % i
         args = {
-            "prefix": os.path.join(COUCHDB, "rel", "overlay"),
+            "prefix": COUCHDB,
             "data_dir": os.path.join(DEV_PATH, "lib", node, "data"),
             "view_dir": os.path.join(DEV_PATH, "lib", node, "data"),
             "node_name": "-name %s@127.0.0.1" % node,


[3/3] couchdb commit: updated refs/heads/1843-feature-bigcouch to 3688eab

Posted by da...@apache.org.
Use the correct function name to reboot nodes


Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/3688eab9
Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/3688eab9
Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/3688eab9

Branch: refs/heads/1843-feature-bigcouch
Commit: 3688eab9d4c6ab673be753a4641ce97e85014d27
Parents: 03f8de2
Author: Paul J. Davis <pa...@gmail.com>
Authored: Thu Feb 6 16:28:13 2014 -0600
Committer: Paul J. Davis <pa...@gmail.com>
Committed: Thu Feb 6 16:28:13 2014 -0600

----------------------------------------------------------------------
 test/javascript/run | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb/blob/3688eab9/test/javascript/run
----------------------------------------------------------------------
diff --git a/test/javascript/run b/test/javascript/run
index 8b754fb..fa7f391 100755
--- a/test/javascript/run
+++ b/test/javascript/run
@@ -57,7 +57,7 @@ def run_couchjs(test):
         )
     for line in p.stdout:
         if line.strip() == "restart":
-            print "restart_nodes()"
+            print "reboot_nodes()"
         else:
             sys.stderr.write(line)
     p.wait()


[2/3] couchdb commit: updated refs/heads/1843-feature-bigcouch to 3688eab

Posted by da...@apache.org.
Fix HTTP handler for view cleanup requests


Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/03f8de2b
Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/03f8de2b
Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/03f8de2b

Branch: refs/heads/1843-feature-bigcouch
Commit: 03f8de2b9efefb4a307505f06117bb1701b958a3
Parents: 3d7d616
Author: Paul J. Davis <pa...@gmail.com>
Authored: Thu Feb 6 16:27:59 2014 -0600
Committer: Paul J. Davis <pa...@gmail.com>
Committed: Thu Feb 6 16:27:59 2014 -0600

----------------------------------------------------------------------
 rel/overlay/etc/default.ini | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb/blob/03f8de2b/rel/overlay/etc/default.ini
----------------------------------------------------------------------
diff --git a/rel/overlay/etc/default.ini b/rel/overlay/etc/default.ini
index 8a07a1d..be1745d 100644
--- a/rel/overlay/etc/default.ini
+++ b/rel/overlay/etc/default.ini
@@ -75,7 +75,7 @@ _system = {chttpd_misc, handle_system_req}
 
 [httpd_db_handlers]
 _all_docs = {couch_mrview_http, handle_all_docs_req}
-_view_cleanup = {couch_httpd_db, handle_view_cleanup_req}
+_view_cleanup = {couch_mrview_http, handle_cleanup_req}
 _compact = {couch_httpd_db, handle_compact_req}
 _design = {couch_httpd_db, handle_design_req}
 _temp_view = {couch_mrview_http, handle_temp_view_req}