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/05 05:25:18 UTC

[4/5] couch commit: updated refs/heads/import to 68f9777

Switch the default URI port to 15986

BigCouch has the single node API on 15986 for node 1. This is just a
temporary convenience change while we hack on the merge.


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

Branch: refs/heads/import
Commit: 91ae53eeea9dee7b8c4d788a28e9ad51072c9381
Parents: bc94832
Author: Paul J. Davis <pa...@gmail.com>
Authored: Tue Feb 4 22:21:02 2014 -0600
Committer: Paul J. Davis <pa...@gmail.com>
Committed: Tue Feb 4 22:21:02 2014 -0600

----------------------------------------------------------------------
 priv/couch_js/http.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-couch/blob/91ae53ee/priv/couch_js/http.c
----------------------------------------------------------------------
diff --git a/priv/couch_js/http.c b/priv/couch_js/http.c
index c66b5da..767573f 100644
--- a/priv/couch_js/http.c
+++ b/priv/couch_js/http.c
@@ -358,9 +358,9 @@ http_uri(JSContext* cx, JSObject* req, couch_args* args, jsval* uri_val)
     FILE* uri_fp = NULL;
     JSString* uri_str;
 
-    // Default is http://localhost:5984/ when no uri file is specified
+    // Default is http://localhost:15986/ when no uri file is specified
     if (!args->uri_file) {
-        uri_str = JS_InternString(cx, "http://localhost:5984/");
+        uri_str = JS_InternString(cx, "http://localhost:15986/");
         *uri_val = STRING_TO_JSVAL(uri_str);
         return JS_TRUE;
     }