You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ja...@apache.org on 2017/06/02 12:08:06 UTC

[couchdb] branch fix/548/view-index-monitor updated (7e3d7cb -> 35e9323)

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

jan pushed a change to branch fix/548/view-index-monitor
in repository https://gitbox.apache.org/repos/asf/couchdb.git.

     omits  7e3d7cb   fix: monitor index before getting its state #548
       new  35e9323   fix: add connection: close to couch.js http requests #548

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (7e3d7cb)
            \
             N -- N -- N   refs/heads/fix/548/view-index-monitor (35e9323)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omits" are not gone; other references still
refer to them.  Any revisions marked "discards" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 src/couch_mrview/src/couch_mrview_util.erl | 2 +-
 test/javascript/couch.js                   | 1 +
 2 files changed, 2 insertions(+), 1 deletion(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@couchdb.apache.org" <co...@couchdb.apache.org>'].

[couchdb] 01/01: fix: add connection: close to couch.js http requests #548

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

jan pushed a commit to branch fix/548/view-index-monitor
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit 35e9323fa4396e869131131442f137ff6c739f07
Author: Jan Lehnardt <ja...@apache.org>
AuthorDate: Fri Jun 2 14:07:42 2017 +0200

    fix: add connection: close to couch.js http requests #548
---
 test/javascript/couch.js | 1 +
 1 file changed, 1 insertion(+)

diff --git a/test/javascript/couch.js b/test/javascript/couch.js
index c7b8d95..b0d086f 100644
--- a/test/javascript/couch.js
+++ b/test/javascript/couch.js
@@ -436,6 +436,7 @@ CouchDB.request = function(method, uri, options) {
   options.headers = typeof(options.headers) == 'object' ? options.headers : {};
   options.headers["Content-Type"] = options.headers["Content-Type"] || options.headers["content-type"] || "application/json";
   options.headers["Accept"] = options.headers["Accept"] || options.headers["accept"] || "application/json";
+  options.headers["Connection"] = options.headers["Connection"] || options.headers["connection"] || "close";
   var req = CouchDB.newXhr();
   uri = CouchDB.proxyUrl(uri);
 

-- 
To stop receiving notification emails like this one, please contact
"commits@couchdb.apache.org" <co...@couchdb.apache.org>.