[GitHub] wohali commented on issue #551: [Jenkins] couchjs segfaults

2017-06-07 Thread git
wohali commented on issue #551: [Jenkins] couchjs segfaults URL: https://github.com/apache/couchdb/issues/551#issuecomment-306934907 Based on @nickva 's suppositions, I attempted a low-memory, low-stack-size invocation of couch and couchjs respectively. For reference: ```sh $

[GitHub] tonysun83 commented on a change in pull request #538: Catch Database Do Not Exist Error

2017-06-07 Thread git
tonysun83 commented on a change in pull request #538: Catch Database Do Not Exist Error URL: https://github.com/apache/couchdb/pull/538#discussion_r120805046 ## File path: src/mem3/src/mem3_sync_security.erl ## @@ -44,10 +44,20 @@ maybe_sync_int(#shard{name=Name}=Src,

[GitHub] iilyak opened a new pull request #586: Avoid using length to detect non empty list

2017-06-07 Thread git
iilyak opened a new pull request #586: Avoid using length to detect non empty list URL: https://github.com/apache/couchdb/pull/586 ## Overview length(Values) is O(n) operation. Which could get expensive for long lists. Change the code to rely on pattern matching to detect non

[GitHub] eiri commented on a change in pull request #560: Fix broken eunit test in changes_since_test_ test suite

2017-06-07 Thread git
eiri commented on a change in pull request #560: Fix broken eunit test in changes_since_test_ test suite URL: https://github.com/apache/couchdb/pull/560#discussion_r120673207 ## File path: src/couch_mrview/src/couch_mrview_test_util.erl ## @@ -72,6 +72,53 @@ ddoc(changes)

[GitHub] eiri commented on a change in pull request #560: Fix broken eunit test in changes_since_test_ test suite

2017-06-07 Thread git
eiri commented on a change in pull request #560: Fix broken eunit test in changes_since_test_ test suite URL: https://github.com/apache/couchdb/pull/560#discussion_r120676398 ## File path: src/couch_mrview/src/couch_mrview.erl ## @@ -267,7 +267,7 @@

[GitHub] eiri commented on a change in pull request #560: Fix broken eunit test in changes_since_test_ test suite

2017-06-07 Thread git
eiri commented on a change in pull request #560: Fix broken eunit test in changes_since_test_ test suite URL: https://github.com/apache/couchdb/pull/560#discussion_r120651163 ## File path: src/couch_mrview/src/couch_mrview_util.erl ## @@ -344,6 +344,9 @@

[GitHub] eiri commented on a change in pull request #560: Fix broken eunit test in changes_since_test_ test suite

2017-06-07 Thread git
eiri commented on a change in pull request #560: Fix broken eunit test in changes_since_test_ test suite URL: https://github.com/apache/couchdb/pull/560#discussion_r120648939 ## File path: src/couch_mrview/src/couch_mrview.erl ## @@ -708,5 +708,5 @@

[GitHub] eiri commented on a change in pull request #560: Fix broken eunit test in changes_since_test_ test suite

2017-06-07 Thread git
eiri commented on a change in pull request #560: Fix broken eunit test in changes_since_test_ test suite URL: https://github.com/apache/couchdb/pull/560#discussion_r120679049 ## File path: src/couch_mrview/test/couch_mrview_changes_since_tests.erl ## @@ -92,37 +129,37 @@

[GitHub] eiri commented on a change in pull request #560: Fix broken eunit test in changes_since_test_ test suite

2017-06-07 Thread git
eiri commented on a change in pull request #560: Fix broken eunit test in changes_since_test_ test suite URL: https://github.com/apache/couchdb/pull/560#discussion_r120679049 ## File path: src/couch_mrview/test/couch_mrview_changes_since_tests.erl ## @@ -92,37 +129,37 @@

[GitHub] eiri commented on a change in pull request #560: Fix broken eunit test in changes_since_test_ test suite

2017-06-07 Thread git
eiri commented on a change in pull request #560: Fix broken eunit test in changes_since_test_ test suite URL: https://github.com/apache/couchdb/pull/560#discussion_r120676398 ## File path: src/couch_mrview/src/couch_mrview.erl ## @@ -267,7 +267,7 @@

[GitHub] eiri commented on a change in pull request #560: Fix broken eunit test in changes_since_test_ test suite

2017-06-07 Thread git
eiri commented on a change in pull request #560: Fix broken eunit test in changes_since_test_ test suite URL: https://github.com/apache/couchdb/pull/560#discussion_r120667148 ## File path: src/couch_mrview/test/couch_mrview_changes_since_tests.erl ## @@ -19,42 +19,79 @@

[GitHub] eiri commented on a change in pull request #560: Fix broken eunit test in changes_since_test_ test suite

2017-06-07 Thread git
eiri commented on a change in pull request #560: Fix broken eunit test in changes_since_test_ test suite URL: https://github.com/apache/couchdb/pull/560#discussion_r120673207 ## File path: src/couch_mrview/src/couch_mrview_test_util.erl ## @@ -72,6 +72,53 @@ ddoc(changes)

[GitHub] eiri commented on a change in pull request #560: Fix broken eunit test in changes_since_test_ test suite

2017-06-07 Thread git
eiri commented on a change in pull request #560: Fix broken eunit test in changes_since_test_ test suite URL: https://github.com/apache/couchdb/pull/560#discussion_r120655214 ## File path: src/couch_mrview/src/couch_mrview_util.erl ## @@ -813,9 +816,13 @@

[GitHub] eiri commented on a change in pull request #560: Fix broken eunit test in changes_since_test_ test suite

2017-06-07 Thread git
eiri commented on a change in pull request #560: Fix broken eunit test in changes_since_test_ test suite URL: https://github.com/apache/couchdb/pull/560#discussion_r120654676 ## File path: src/couch_mrview/src/couch_mrview_util.erl ## @@ -813,9 +816,13 @@

[GitHub] eiri commented on a change in pull request #560: Fix broken eunit test in changes_since_test_ test suite

2017-06-07 Thread git
eiri commented on a change in pull request #560: Fix broken eunit test in changes_since_test_ test suite URL: https://github.com/apache/couchdb/pull/560#discussion_r120650319 ## File path: src/couch_mrview/src/couch_mrview.erl ## @@ -708,5 +708,5 @@

[GitHub] nickva commented on issue #586: Avoid using length to detect non empty list

2017-06-07 Thread git
nickva commented on issue #586: Avoid using length to detect non empty list URL: https://github.com/apache/couchdb/pull/586#issuecomment-306874059 +1 This is an automated message from the Apache Git Service. To respond to

[GitHub] nickva commented on a change in pull request #586: Avoid using length to detect non empty list

2017-06-07 Thread git
nickva commented on a change in pull request #586: Avoid using length to detect non empty list URL: https://github.com/apache/couchdb/pull/586#discussion_r120696388 ## File path: src/mango/src/mango_selector.erl ## @@ -564,5 +564,5 @@ match({[{Field, Cond}]}, Value, Cmp)

[Jenkins] FAILURE: CouchDB » master #26

2017-06-07 Thread Apache Jenkins Server
Boo, we failed. https://builds.apache.org/job/CouchDB/job/master/26/

[GitHub] nickva commented on issue #496: Couchdb 3287 pluggable storage engines

2017-06-07 Thread git
nickva commented on issue #496: Couchdb 3287 pluggable storage engines URL: https://github.com/apache/couchdb/pull/496#issuecomment-306883357 +1 Very nice work. This is a significant step forward. It opens a lot of possibilities for CouchDB. Things I tested: * Read

[GitHub] nickva commented on a change in pull request #586: Avoid using length to detect non empty list

2017-06-07 Thread git
nickva commented on a change in pull request #586: Avoid using length to detect non empty list URL: https://github.com/apache/couchdb/pull/586#discussion_r120696142 ## File path: src/mango/src/mango_selector.erl ## @@ -186,7 +186,7 @@ norm_ops({[{Field, Cond}]}) ->

[GitHub] iilyak closed pull request #586: Avoid using length to detect non empty list

2017-06-07 Thread git
iilyak closed pull request #586: Avoid using length to detect non empty list URL: https://github.com/apache/couchdb/pull/586 This is an automated message from the Apache Git Service. To respond to the message, please log on

[Jenkins] FAILURE: CouchDB » master #25

2017-06-07 Thread Apache Jenkins Server
Boo, we failed. https://builds.apache.org/job/CouchDB/job/master/25/

[GitHub] janl commented on issue #583: eunit couchdb_os_daemons_tests race on startup

2017-06-07 Thread git
janl commented on issue #583: eunit couchdb_os_daemons_tests race on startup URL: https://github.com/apache/couchdb/issues/583#issuecomment-306730924 Could `{failed_to_start_child,os_daemons,{already_started,<0.3640.1>}}} ` ?already started? be a smoking gun?

[GitHub] janl commented on issue #874: Single Node Setup on Fauxton forces non-127.0.0.1 IP

2017-06-07 Thread git
janl commented on issue #874: Single Node Setup on Fauxton forces non-127.0.0.1 IP URL: https://github.com/apache/couchdb-fauxton/issues/874#issuecomment-306731064 @natevw it?s a limitation that came out of time pressure to get all this together. We should definitely fix this.

[jira] [Commented] (COUCHDB-2804) The fast_view optimisation for view-filtered changes feeds is not cluster-aware

2017-06-07 Thread Jun Matsushita (JIRA)
[ https://issues.apache.org/jira/browse/COUCHDB-2804?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16040560#comment-16040560 ] Jun Matsushita commented on COUCHDB-2804: - Hi Mike, I'm interested in these numbers, and also

[GitHub] nickva commented on issue #539: Close idle dbs

2017-06-07 Thread git
nickva commented on issue #539: Close idle dbs URL: https://github.com/apache/couchdb/pull/539#issuecomment-306908903 @davisp ah good point. 6194 is the build for master and 6200 is the close-idle-pr build This is an

[GitHub] davisp commented on issue #539: Close idle dbs

2017-06-07 Thread git
davisp commented on issue #539: Close idle dbs URL: https://github.com/apache/couchdb/pull/539#issuecomment-306912689 Just realized I didn't explicitly +1 this... so: +1 This is an automated message from the Apache

[GitHub] wohali commented on issue #571: eunit context cleanup times out while cleaning up os daemons

2017-06-07 Thread git
wohali commented on issue #571: eunit context cleanup times out while cleaning up os daemons URL: https://github.com/apache/couchdb/issues/571#issuecomment-306916161 The patch here didn't work - see #583. This is an

[GitHub] wohali commented on issue #583: eunit couchdb_os_daemons_tests race on startup

2017-06-07 Thread git
wohali commented on issue #583: eunit couchdb_os_daemons_tests race on startup URL: https://github.com/apache/couchdb/issues/583#issuecomment-306916297 Closing as a duplicate of #571. This is an automated message from the

[GitHub] wohali closed issue #583: eunit couchdb_os_daemons_tests race on startup

2017-06-07 Thread git
wohali closed issue #583: eunit couchdb_os_daemons_tests race on startup URL: https://github.com/apache/couchdb/issues/583 This is an automated message from the Apache Git Service. To respond to the message, please log on

[GitHub] davisp commented on issue #539: Close idle dbs

2017-06-07 Thread git
davisp commented on issue #539: Close idle dbs URL: https://github.com/apache/couchdb/pull/539#issuecomment-306907813 Probably a better idea to use hashes to identify runs rather than Jenkins build numbers. This is an

[GitHub] nickva closed pull request #539: Close idle dbs

2017-06-07 Thread git
nickva closed pull request #539: Close idle dbs URL: https://github.com/apache/couchdb/pull/539 This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above

[GitHub] ArikShifer opened a new issue #584: Using Update Function throws occasional 412 errors when documents has inline attachments

2017-06-07 Thread git
ArikShifer opened a new issue #584: Using Update Function throws occasional 412 errors when documents has inline attachments URL: https://github.com/apache/couchdb/issues/584 I'm using javascript Update Functions to invoke server-side logic to update some individual fields in documents

[Jenkins] FAILURE: CouchDB » master #27

2017-06-07 Thread Apache Jenkins Server
Boo, we failed. https://builds.apache.org/job/CouchDB/job/master/27/

[GitHub] wohali commented on issue #551: [Jenkins] couchjs segfaults

2017-06-07 Thread git
wohali commented on issue #551: [Jenkins] couchjs segfaults URL: https://github.com/apache/couchdb/issues/551#issuecomment-306934907 Based on @nickva 's suppositions, I attempted a low-memory, low-stack-size invocation of couch and couchjs respectively. For reference: ```sh $

[GitHub] wohali commented on issue #551: [Jenkins] couchjs segfaults

2017-06-07 Thread git
wohali commented on issue #551: [Jenkins] couchjs segfaults URL: https://github.com/apache/couchdb/issues/551#issuecomment-306934907 Based on @nickva 's suppositions, I attempted a low-memory, low-stack-size invocation of couch and couchjs respectively. For reference: ```sh $

[GitHub] wohali commented on issue #551: [Jenkins] couchjs segfaults

2017-06-07 Thread git
wohali commented on issue #551: [Jenkins] couchjs segfaults URL: https://github.com/apache/couchdb/issues/551#issuecomment-306934907 Based on @nickva 's suppositions, I attempted a low-memory, low-stack-size invocation of couch and couchjs respectively. For reference: ```sh $

[GitHub] garrensmith commented on issue #923: Clean up Auth section

2017-06-07 Thread git
garrensmith commented on issue #923: Clean up Auth section URL: https://github.com/apache/couchdb-fauxton/pull/923#issuecomment-306787329 Thanks @timmak for the initial work. This is an automated message from the Apache Git

[GitHub] harshschoolengg opened a new issue #585: Futon logout works on Firefox but not Chrome

2017-06-07 Thread git
harshschoolengg opened a new issue #585: Futon logout works on Firefox but not Chrome URL: https://github.com/apache/couchdb/issues/585 I am not able to log out from Futon interface in chrome. When I click on logout link nothing happens. I am able to successfully login/logout from Futon

[GitHub] garrensmith closed pull request #923: Clean up Auth section

2017-06-07 Thread git
garrensmith closed pull request #923: Clean up Auth section URL: https://github.com/apache/couchdb-fauxton/pull/923 This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub

[GitHub] millayr commented on issue #923: Clean up Auth section

2017-06-07 Thread git
millayr commented on issue #923: Clean up Auth section URL: https://github.com/apache/couchdb-fauxton/pull/923#issuecomment-306771751 +1 This is an automated message from the Apache Git Service. To respond to the message,

[GitHub] wohali commented on issue #583: eunit couchdb_os_daemons_tests race on startup

2017-06-07 Thread git
wohali commented on issue #583: eunit couchdb_os_daemons_tests race on startup URL: https://github.com/apache/couchdb/issues/583#issuecomment-306821177 That's coming from the subsequent tests, after it failed to stop it.

[GitHub] wohali commented on issue #585: Futon logout works on Firefox but not Chrome

2017-06-07 Thread git
wohali commented on issue #585: Futon logout works on Firefox but not Chrome URL: https://github.com/apache/couchdb/issues/585#issuecomment-306821465 I'm afraid that Futon is no longer supported. You will want to upgrade to CouchDB 2.0 and the new UI in that, Fauxton.

[GitHub] wohali closed issue #585: Futon logout works on Firefox but not Chrome

2017-06-07 Thread git
wohali closed issue #585: Futon logout works on Firefox but not Chrome URL: https://github.com/apache/couchdb/issues/585 This is an automated message from the Apache Git Service. To respond to the message, please log on