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 2017/05/11 00:56:17 UTC

[couchdb] branch upload-failed-logfiles updated (a295a70 -> b9bf9ff)

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

wohali pushed a change to branch upload-failed-logfiles
in repository https://gitbox.apache.org/repos/asf/couchdb.git.

      from  a295a70   support ancient versions of requests library
       new  7229a16   Revert "make EUnit fail intentionally to trigger after_failure script"
       new  2f32887   even more compatibility for old requests
       new  b9bf9ff   Force javascript test failure

The 3 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:
 build-aux/logfile-uploader.py                          | 2 +-
 src/global_changes/test/global_changes_hooks_tests.erl | 1 -
 test/javascript/tests/all_docs.js                      | 1 +
 3 files changed, 2 insertions(+), 2 deletions(-)

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

[couchdb] 02/03: even more compatibility for old requests

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

wohali pushed a commit to branch upload-failed-logfiles
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit 2f328875d5a2dc5c0aba86ae9c9f17794e256e7d
Author: Joan Touzet <jo...@atypical.net>
AuthorDate: Wed May 10 20:55:20 2017 -0400

    even more compatibility for old requests
---
 build-aux/logfile-uploader.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build-aux/logfile-uploader.py b/build-aux/logfile-uploader.py
index 4555cdc..9db4142 100755
--- a/build-aux/logfile-uploader.py
+++ b/build-aux/logfile-uploader.py
@@ -106,7 +106,7 @@ def main():
     collect_logfiles()
     req = upload_logs()
     print (req.url)
-    print (req.text)
+    print (req.content)
     print ("Upload complete!")
 
 if __name__ == '__main__':

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

[couchdb] 01/03: Revert "make EUnit fail intentionally to trigger after_failure script"

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

wohali pushed a commit to branch upload-failed-logfiles
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit 7229a1600a20c9b62aa0418a0435ab5b466e7043
Author: Joan Touzet <jo...@atypical.net>
AuthorDate: Wed May 10 20:54:06 2017 -0400

    Revert "make EUnit fail intentionally to trigger after_failure script"
    
    This reverts commit 358d415344f3ff8bcda47897b618c80148ed8c14.
---
 src/global_changes/test/global_changes_hooks_tests.erl | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/global_changes/test/global_changes_hooks_tests.erl b/src/global_changes/test/global_changes_hooks_tests.erl
index e524441..23fa2c8 100644
--- a/src/global_changes/test/global_changes_hooks_tests.erl
+++ b/src/global_changes/test/global_changes_hooks_tests.erl
@@ -100,7 +100,6 @@ should_not_fail_for_admin(Host) ->
         Headers = [{basic_auth, {"admin", "pass"}}],
         {Status, [Error, Reason]} =
             request(Host, Headers, [<<"error">>, <<"reason">>]),
-        ?assertEqual(200, 201),
         ?assertEqual(200, Status),
         ?assertEqual(undefined, Error),
         ?assertEqual(undefined, Reason)

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

[couchdb] 03/03: Force javascript test failure

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

wohali pushed a commit to branch upload-failed-logfiles
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit b9bf9ff75a1f0e8707047d0bff9d1249aa9250b8
Author: Joan Touzet <jo...@atypical.net>
AuthorDate: Wed May 10 20:55:50 2017 -0400

    Force javascript test failure
---
 test/javascript/tests/all_docs.js | 1 +
 1 file changed, 1 insertion(+)

diff --git a/test/javascript/tests/all_docs.js b/test/javascript/tests/all_docs.js
index 64524d8..666f438 100644
--- a/test/javascript/tests/all_docs.js
+++ b/test/javascript/tests/all_docs.js
@@ -11,6 +11,7 @@
 // the License.
 
 couchTests.all_docs = function(debug) {
+  T(0 == 1);
   var db_name = get_random_db_name();
   var db = new CouchDB(db_name, {"X-Couch-Full-Commit":"false"}, {w: 3});
   db.createDb();

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