[Jenkins] FAILURE: CouchDB » master #343

2018-09-12 Thread Apache Jenkins Server
Boo, we failed. https://builds.apache.org/job/CouchDB/job/master/343/

[jira] [Commented] (COUCHDB-3216) Corrupted compact.meta files can lead to cyclic crashes with no recovery

2018-09-12 Thread ASF GitHub Bot (JIRA)


[ 
https://issues.apache.org/jira/browse/COUCHDB-3216?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16612752#comment-16612752
 ] 

ASF GitHub Bot commented on COUCHDB-3216:
-

Github user iilyak closed the pull request at:

https://github.com/apache/couchdb-couch/pull/209


> Corrupted compact.meta files can lead to cyclic crashes with no recovery
> 
>
> Key: COUCHDB-3216
> URL: https://issues.apache.org/jira/browse/COUCHDB-3216
> Project: CouchDB
>  Issue Type: Bug
>Reporter: ILYA
>Priority: Major
>
> In the case when compact.meta file is corrupted the compactor keeps crashing 
> over and over with no recovery.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[GitHub] couchdb-couch pull request #209: remove compact files on failure

2018-09-12 Thread iilyak
Github user iilyak closed the pull request at:

https://github.com/apache/couchdb-couch/pull/209


---


[GitHub] couchdb-couch issue #209: remove compact files on failure

2018-09-12 Thread iilyak
Github user iilyak commented on the issue:

https://github.com/apache/couchdb-couch/pull/209
  
closing this due to inactivity 


---


[GitHub] iilyak closed pull request #1601: Implement couch_file:format_status to log filepath

2018-09-12 Thread GitBox
iilyak closed pull request #1601: Implement couch_file:format_status to log 
filepath
URL: https://github.com/apache/couchdb/pull/1601
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/src/couch/src/couch_file.erl b/src/couch/src/couch_file.erl
index 55cb956617..6aa8d0b895 100644
--- a/src/couch/src/couch_file.erl
+++ b/src/couch/src/couch_file.erl
@@ -47,7 +47,7 @@
 -export([last_read/1]).
 
 % gen_server callbacks
--export([init/1, terminate/2, code_change/3]).
+-export([init/1, terminate/2, code_change/3, format_status/2]).
 -export([handle_call/3, handle_cast/2, handle_info/2]).
 
 %% helper functions
@@ -526,6 +526,9 @@ handle_info({'DOWN', Ref, process, _Pid, _Info}, 
#file{db_monitor=Ref}=File) ->
 false -> {noreply, File}
 end.
 
+format_status(_Opt, [PDict, #file{} = File]) ->
+{_Fd, FilePath} = couch_util:get_value(couch_file_fd, PDict),
+[{data, [{"State", File}, {"InitialFilePath", FilePath}]}].
 
 find_header(Fd, Block) ->
 case (catch load_header(Fd, Block)) of


 


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] iilyak commented on issue #1601: Implement couch_file:format_status to log filepath

2018-09-12 Thread GitBox
iilyak commented on issue #1601: Implement couch_file:format_status to log 
filepath
URL: https://github.com/apache/couchdb/pull/1601#issuecomment-420790043
 
 
   Reusing +1 from previous review of the same change 
https://github.com/apache/couchdb-couch/pull/215#issuecomment-263934828


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] iilyak opened a new pull request #1601: Implement couch_file:format_status to log filepath

2018-09-12 Thread GitBox
iilyak opened a new pull request #1601: Implement couch_file:format_status to 
log filepath
URL: https://github.com/apache/couchdb/pull/1601
 
 
   ## Overview
   
   Erlang OTP logs the fact when gen_server behavior crashes. However in case 
of couch_file the filename is not part of the state. So it is quite hard to 
figure out what happened given the current log entry format. This PR adds 
information about filepath to the log entry. Keep in mind though that the 
filepath value is captured on couch_file:start_link. It is not representing the 
current file name if file is renamed or moved.
   
   ## Testing recommendations
   
   1. Start couchdb `dev/run --admin=adm:pass`
   2. Start remsh session `dev/remsh`
   3. Inject failure in one of the couch_file processes (by reading with 
position greater than the file size) 
   ```
   {_Port, Pid, _Fd, _Name} = hd(couch_debug:opened_files()).
   couch_file:pread_binary(Pid, 999).
   ```
   4. Check logs to make sure the following messages are present:
   ```
   [error] 2018-09-12T20:01:02.957946Z node1@127.0.0.1 <0.390.0>  
gen_server <0.390.0> terminated with reason: bad return value 
{read_beyond_eof,"/home/jenkins/dev/lib/node1/data/dbs/nodes.couch"}
 last msg: {pread_iolist,123123123}
state: 
[{data,[{"State",{file,{file_descriptor,prim_file,{#Port<0.51359>,29}},true,139454,#Ref<0.0.3.65>,infinity}},{"InitialFilePath","/home/jenkins/dev/lib/node1/data/dbs/nodes.couch"}]}]
   ```
   
   ## Related Issues or Pull Requests
   
   This is a port of PR from https://github.com/apache/couchdb-couch/pull/215 
to couchdb repository. 
   
   ## Checklist
   
   - [x] Code is written and works correctly;
   - [ ] Changes are covered by tests;
   - [ ] Documentation reflects the changes;
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[Jenkins] SUCCESS: CouchDB » master #342

2018-09-12 Thread Apache Jenkins Server
Yay, we passed. https://builds.apache.org/job/CouchDB/job/master/342/

[GitHub] chewbranca closed pull request #1593: Couch server improvements

2018-09-12 Thread GitBox
chewbranca closed pull request #1593: Couch server improvements
URL: https://github.com/apache/couchdb/pull/1593
 
 
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] davisp commented on issue #1593: Couch server improvements

2018-09-12 Thread GitBox
davisp commented on issue #1593: Couch server improvements
URL: https://github.com/apache/couchdb/pull/1593#issuecomment-420745387
 
 
   +1 to merge ignoring my deadline commit


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] ufobat commented on a change in pull request #326: Split of Firewall and Erlang Configuration

2018-09-12 Thread GitBox
ufobat commented on a change in pull request #326: Split of Firewall and Erlang 
Configuration
URL: 
https://github.com/apache/couchdb-documentation/pull/326#discussion_r217127145
 
 

 ##
 File path: src/cluster/setup.rst
 ##
 @@ -45,6 +45,28 @@ possible to force an Erlang application to use a specific 
port rage.
 This documentation will use the range TCP ``9100-9200``. Open up those ports in
 your firewalls and it is time to test it.
 
+Configure And Test The Communication With Erlang
 
 Review comment:
   fixed


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] ufobat commented on a change in pull request #326: Split of Firewall and Erlang Configuration

2018-09-12 Thread GitBox
ufobat commented on a change in pull request #326: Split of Firewall and Erlang 
Configuration
URL: 
https://github.com/apache/couchdb-documentation/pull/326#discussion_r217131936
 
 

 ##
 File path: src/cluster/setup.rst
 ##
 @@ -45,6 +45,28 @@ possible to force an Erlang application to use a specific 
port rage.
 This documentation will use the range TCP ``9100-9200``. Open up those ports in
 your firewalls and it is time to test it.
 
+Configure And Test The Communication With Erlang
+
+
+Make CouchDB use correct IP|FQDN and the open ports.
+
+
+In file etc/vm.args change the the line ``-name couchdb@127.0.0.1`` to
+``-name couchdb@`` for each node which defines
+the node and must be seperate for each node. For clustered setup, each node in
 
 Review comment:
   True! It is indeed confusing. In this commit I was just reordering blocks in 
order to improve the locical order of the sections. So thats exactly what been 
already in the 
[documentation](http://docs.couchdb.org/en/latest/cluster/setup.html#the-cluster-setup-api).
 
   I am a CouchDB Newbie, so I think it tries to express that this setting is 
defining the nodes name. `must be seperate for each node` might be a duplicate 
of the next sentence, which is talking about the uniquness.


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] ufobat commented on a change in pull request #326: Split of Firewall and Erlang Configuration

2018-09-12 Thread GitBox
ufobat commented on a change in pull request #326: Split of Firewall and Erlang 
Configuration
URL: 
https://github.com/apache/couchdb-documentation/pull/326#discussion_r217127183
 
 

 ##
 File path: src/cluster/setup.rst
 ##
 @@ -45,6 +45,28 @@ possible to force an Erlang application to use a specific 
port rage.
 This documentation will use the range TCP ``9100-9200``. Open up those ports in
 your firewalls and it is time to test it.
 
+Configure And Test The Communication With Erlang
+
+
+Make CouchDB use correct IP|FQDN and the open ports.
+
+
+In file etc/vm.args change the the line ``-name couchdb@127.0.0.1`` to
 
 Review comment:
   fixed


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] flimzy commented on a change in pull request #326: Split of Firewall and Erlang Configuration

2018-09-12 Thread GitBox
flimzy commented on a change in pull request #326: Split of Firewall and Erlang 
Configuration
URL: 
https://github.com/apache/couchdb-documentation/pull/326#discussion_r217101756
 
 

 ##
 File path: src/cluster/setup.rst
 ##
 @@ -45,6 +45,28 @@ possible to force an Erlang application to use a specific 
port rage.
 This documentation will use the range TCP ``9100-9200``. Open up those ports in
 your firewalls and it is time to test it.
 
+Configure And Test The Communication With Erlang
+
+
+Make CouchDB use correct IP|FQDN and the open ports.
+
+
+In file etc/vm.args change the the line ``-name couchdb@127.0.0.1`` to
 
 Review comment:
   For consistency, "etc/vm.args" should be back-quoted:
   
   > In file ``etc/vm.args`` change...
   
   Also, you duplicated the word "the".


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] flimzy commented on a change in pull request #326: Split of Firewall and Erlang Configuration

2018-09-12 Thread GitBox
flimzy commented on a change in pull request #326: Split of Firewall and Erlang 
Configuration
URL: 
https://github.com/apache/couchdb-documentation/pull/326#discussion_r217102088
 
 

 ##
 File path: src/cluster/setup.rst
 ##
 @@ -45,6 +45,28 @@ possible to force an Erlang application to use a specific 
port rage.
 This documentation will use the range TCP ``9100-9200``. Open up those ports in
 your firewalls and it is time to test it.
 
+Configure And Test The Communication With Erlang
+
+
+Make CouchDB use correct IP|FQDN and the open ports.
+
+
+In file etc/vm.args change the the line ``-name couchdb@127.0.0.1`` to
+``-name couchdb@`` for each node which defines
+the node and must be seperate for each node. For clustered setup, each node in
 
 Review comment:
   This sentence confuses me.  Do you mean "for each line which defines the 
node"?
   
   And what does "must be separate for each node" mean?   A unique line per 
node?


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] flimzy commented on a change in pull request #326: Split of Firewall and Erlang Configuration

2018-09-12 Thread GitBox
flimzy commented on a change in pull request #326: Split of Firewall and Erlang 
Configuration
URL: 
https://github.com/apache/couchdb-documentation/pull/326#discussion_r217101194
 
 

 ##
 File path: src/cluster/setup.rst
 ##
 @@ -45,6 +45,28 @@ possible to force an Erlang application to use a specific 
port rage.
 This documentation will use the range TCP ``9100-9200``. Open up those ports in
 your firewalls and it is time to test it.
 
+Configure And Test The Communication With Erlang
 
 Review comment:
   I suggest using normal "Title Case" capitalization here, to be consistent 
with the rest of the documentation.
   
   > Configure and Test the Communication with Erlang


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] ufobat opened a new pull request #327: Added the number of Replicas to the Put {db} call

2018-09-12 Thread GitBox
ufobat opened a new pull request #327: Added the number of Replicas to the Put 
{db} call
URL: https://github.com/apache/couchdb-documentation/pull/327
 
 
   The query parameter `n` for the number of Replicas was missing in the `PUT 
{db}` REST call.
   
   
   
   ## Overview
   
   
   
   ## Testing recommendations
   
   
   
   ## GitHub issue number
   
   
   
   ## Related Pull Requests
   
   
   
   ## Checklist
   
   - [ ] Documentation is written and is accurate;
   - [ ] `make check` passes with no errors
   - [ ] Update 
[rebar.config.script](https://github.com/apache/couchdb/blob/master/rebar.config.script)
 with the commit hash once this PR is rebased and merged
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] ufobat opened a new pull request #326: Split of Firewall and Erlang Configuration

2018-09-12 Thread GitBox
ufobat opened a new pull request #326: Split of Firewall and Erlang 
Configuration
URL: https://github.com/apache/couchdb-documentation/pull/326
 
 
   While installing a CouchDB cluster I was struggeling over some points. With 
this PR I am hoping to emphasize what configurational steps are actually 
required required but where hidden in either the Firewall or Configuration 
Wizard section.
   
   1. Within the part that describes the firewall requirements there was also 
quite a lot of information that describes *things* regarding Erlang. Therefore 
I created a subsection regardins all the Erlang *things*
   
   2. Some parts are about testing the communication in/with Erlang, other 
parts are about actually configurating settings in`vm.args`. In the chapter 
about using the cluster wizard there was information about the ip|fqdn 
settings. I think that those settings are always required to be changed for all 
cluster installation.
   
   3. The configuration curl calls for passwod and bind_address is using 
`couchdb@`. Previously IP or FQDN was allows in the 
vm.args file. I think that those 2 parts belong together so I made them 
consistent.
   
   
   
   ## Overview
   
   
   
   ## Testing recommendations
   
   
   
   ## GitHub issue number
   
   
   
   ## Related Pull Requests
   
   
   
   ## Checklist
   
   - [ ] Documentation is written and is accurate;
   - [ ] `make check` passes with no errors
   - [ ] Update 
[rebar.config.script](https://github.com/apache/couchdb/blob/master/rebar.config.script)
 with the commit hash once this PR is rebased and merged
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] wohali closed pull request #324: Fixed typo in vm.args example

2018-09-12 Thread GitBox
wohali closed pull request #324: Fixed typo in vm.args example
URL: https://github.com/apache/couchdb-documentation/pull/324
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/src/cluster/setup.rst b/src/cluster/setup.rst
index 683062f..13e2559 100644
--- a/src/cluster/setup.rst
+++ b/src/cluster/setup.rst
@@ -127,7 +127,7 @@ and ``-kernel inet_dist_listen_max 9200`` like below:
 -name ...
 -setcookie ...
 ...
--kernel inet_dist_listen_max 9100
+-kernel inet_dist_listen_min 9100
 -kernel inet_dist_listen_max 9200
 
 .. _cluster/setup/wizard:


 


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] ufobat opened a new issue #325: Chapter 11.1.2. - The Cluster Setup Wizard - definition of "same install procedure"

2018-09-12 Thread GitBox
ufobat opened a new issue #325: Chapter 11.1.2. - The Cluster Setup Wizard - 
definition of "same install procedure"
URL: https://github.com/apache/couchdb-documentation/issues/325
 
 
   In Chapter 11.1.2 that explains how to use the Cluster Setup Wizard you can 
find following lines
   
   > When you click “setup cluster” you are asked for admin credentials again 
and then to add nodes by IP address. To get more nodes, go through the same 
install procedure on other machines.
   
   I am unsure what the term "same install procedure" exactly means. During my 
cluster setup I noticed that I had to run the wizard *only* on one of the 2 
cluster nodes. Could you please explain/document exactly which steps should on 
each of the other maschines?


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[jira] [Commented] (COUCHDB-2789) Refactor test suite for endpoint testing to skip overriden handlers

2018-09-12 Thread ASF GitHub Bot (JIRA)


[ 
https://issues.apache.org/jira/browse/COUCHDB-2789?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16612094#comment-16612094
 ] 

ASF GitHub Bot commented on COUCHDB-2789:
-

Github user iilyak closed the pull request at:

https://github.com/apache/couchdb-mem3/pull/12


> Refactor test suite for endpoint testing to skip overriden handlers
> ---
>
> Key: COUCHDB-2789
> URL: https://issues.apache.org/jira/browse/COUCHDB-2789
> Project: CouchDB
>  Issue Type: Test
>Reporter: ILYA
>Priority: Major
>
> Currently if you override an endpoint handler and try to run couchdb test 
> suite it will fail due to the fact that the test suite expects it's couchdb 
> handler for the endpoint.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[GitHub] couchdb-mem3 pull request #12: Add test suite for http endpoints

2018-09-12 Thread iilyak
Github user iilyak closed the pull request at:

https://github.com/apache/couchdb-mem3/pull/12


---


[GitHub] couchdb-mem3 issue #12: Add test suite for http endpoints

2018-09-12 Thread iilyak
Github user iilyak commented on the issue:

https://github.com/apache/couchdb-mem3/pull/12
  
stale PR


---


[jira] [Commented] (COUCHDB-2789) Refactor test suite for endpoint testing to skip overriden handlers

2018-09-12 Thread ASF GitHub Bot (JIRA)


[ 
https://issues.apache.org/jira/browse/COUCHDB-2789?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16612089#comment-16612089
 ] 

ASF GitHub Bot commented on COUCHDB-2789:
-

Github user iilyak closed the pull request at:

https://github.com/apache/couchdb-couch/pull/92


> Refactor test suite for endpoint testing to skip overriden handlers
> ---
>
> Key: COUCHDB-2789
> URL: https://issues.apache.org/jira/browse/COUCHDB-2789
> Project: CouchDB
>  Issue Type: Test
>Reporter: ILYA
>Priority: Major
>
> Currently if you override an endpoint handler and try to run couchdb test 
> suite it will fail due to the fact that the test suite expects it's couchdb 
> handler for the endpoint.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[GitHub] couchdb-couch pull request #92: Refactor test suite for httpd endpoints

2018-09-12 Thread iilyak
Github user iilyak closed the pull request at:

https://github.com/apache/couchdb-couch/pull/92


---


[GitHub] couchdb-couch issue #92: Refactor test suite for httpd endpoints

2018-09-12 Thread iilyak
Github user iilyak commented on the issue:

https://github.com/apache/couchdb-couch/pull/92
  
stale PR


---


[jira] [Commented] (COUCHDB-2789) Refactor test suite for endpoint testing to skip overriden handlers

2018-09-12 Thread ASF GitHub Bot (JIRA)


[ 
https://issues.apache.org/jira/browse/COUCHDB-2789?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16612087#comment-16612087
 ] 

ASF GitHub Bot commented on COUCHDB-2789:
-

Github user iilyak closed the pull request at:

https://github.com/apache/couchdb-chttpd/pull/65


> Refactor test suite for endpoint testing to skip overriden handlers
> ---
>
> Key: COUCHDB-2789
> URL: https://issues.apache.org/jira/browse/COUCHDB-2789
> Project: CouchDB
>  Issue Type: Test
>Reporter: ILYA
>Priority: Major
>
> Currently if you override an endpoint handler and try to run couchdb test 
> suite it will fail due to the fact that the test suite expects it's couchdb 
> handler for the endpoint.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[GitHub] couchdb-couch-epi issue #6: Implement 'couch_epi:is_defined_by_app/4'

2018-09-12 Thread iilyak
Github user iilyak commented on the issue:

https://github.com/apache/couchdb-couch-epi/pull/6
  
stale PR


---


[GitHub] couchdb-chttpd pull request #65: Refactor test suite for httpd endpoints

2018-09-12 Thread iilyak
Github user iilyak closed the pull request at:

https://github.com/apache/couchdb-chttpd/pull/65


---


[GitHub] couchdb-couch-epi pull request #6: Implement 'couch_epi:is_defined_by_app/4'

2018-09-12 Thread iilyak
Github user iilyak closed the pull request at:

https://github.com/apache/couchdb-couch-epi/pull/6


---


[GitHub] couchdb-chttpd issue #65: Refactor test suite for httpd endpoints

2018-09-12 Thread iilyak
Github user iilyak commented on the issue:

https://github.com/apache/couchdb-chttpd/pull/65
  
stale PR


---


[GitHub] couchdb-chttpd pull request #34: Handle Etag generation in one place

2018-09-12 Thread iilyak
Github user iilyak closed the pull request at:

https://github.com/apache/couchdb-chttpd/pull/34


---


[jira] [Commented] (COUCHDB-2650) Etag is 'undefined' when _all_docs

2018-09-12 Thread ASF GitHub Bot (JIRA)


[ 
https://issues.apache.org/jira/browse/COUCHDB-2650?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16612081#comment-16612081
 ] 

ASF GitHub Bot commented on COUCHDB-2650:
-

Github user iilyak closed the pull request at:

https://github.com/apache/couchdb-chttpd/pull/34


> Etag is 'undefined' when _all_docs
> --
>
> Key: COUCHDB-2650
> URL: https://issues.apache.org/jira/browse/COUCHDB-2650
> Project: CouchDB
>  Issue Type: Bug
>  Components: HTTP Interface
>Affects Versions: 2.0.0
>Reporter: ILYA
>Assignee: Klaus Trainer
>Priority: Blocker
> Fix For: 2.0.0
>
>
> Steps to reproduce
> http --json --auth='adm:pass' PUT 'http://localhost:15984/test_db'
> http -v --json --auth='adm:pass' GET 
> 'http://localhost:15984/test_db/_all_docs'
> HTTP/1.1 200 OK
> Cache-Control: must-revalidate
> Content-Type: application/json
> Date: Thu, 26 Mar 2015 15:21:56 GMT
> ETag: undefined
> Server: CouchDB/b6d8665 (Erlang OTP/17)
> Transfer-Encoding: chunked
> X-Couch-Request-ID: 2f7f8320
> X-CouchDB-Body-Time: 0
> {
> "offset": 0, 
> "rows": [], 
> "total_rows": 0
> }
> The cause of this is in the following line 
> https://github.com/apache/couchdb-couch-mrview/blob/master/src/couch_mrview_http.erl#L331



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[GitHub] couchdb-chttpd issue #34: Handle Etag generation in one place

2018-09-12 Thread iilyak
Github user iilyak commented on the issue:

https://github.com/apache/couchdb-chttpd/pull/34
  
stale PR


---


[jira] [Commented] (COUCHDB-2625) Make customizable dbname_validator

2018-09-12 Thread ASF GitHub Bot (JIRA)


[ 
https://issues.apache.org/jira/browse/COUCHDB-2625?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16612078#comment-16612078
 ] 

ASF GitHub Bot commented on COUCHDB-2625:
-

Github user iilyak closed the pull request at:

https://github.com/apache/couchdb-chttpd/pull/26


> Make customizable dbname_validator 
> ---
>
> Key: COUCHDB-2625
> URL: https://issues.apache.org/jira/browse/COUCHDB-2625
> Project: CouchDB
>  Issue Type: Bug
>  Components: Database Core
>Reporter: ILYA
>Assignee: ILYA
>Priority: Major
> Fix For: 2.0.0
>
>
> Currently allowed databases names are either should match regexp or hardcoded 
> list of internal databases like _users or _replicator. Which make it hard to 
> customize without modifying source code.  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[GitHub] couchdb-chttpd pull request #26: Return {error, Reason} for illegal_database...

2018-09-12 Thread iilyak
Github user iilyak closed the pull request at:

https://github.com/apache/couchdb-chttpd/pull/26


---


[GitHub] couchdb-chttpd issue #26: Return {error, Reason} for illegal_database_name

2018-09-12 Thread iilyak
Github user iilyak commented on the issue:

https://github.com/apache/couchdb-chttpd/pull/26
  
stale PR


---


[jira] [Commented] (COUCHDB-2547) Fix broken tests for couch app

2018-09-12 Thread ASF GitHub Bot (JIRA)


[ 
https://issues.apache.org/jira/browse/COUCHDB-2547?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16612077#comment-16612077
 ] 

ASF GitHub Bot commented on COUCHDB-2547:
-

Github user iilyak closed the pull request at:

https://github.com/apache/couchdb-chttpd/pull/24


> Fix broken tests for couch app
> --
>
> Key: COUCHDB-2547
> URL: https://issues.apache.org/jira/browse/COUCHDB-2547
> Project: CouchDB
>  Issue Type: Test
>Reporter: ILYA
>Assignee: ILYA
>Priority: Major
> Fix For: 2.0.0
>
>
> Some of the tests suites are disabled with -ifdef(run_broken_tests). 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[GitHub] couchdb-chttpd issue #24: Use started apps from test_util:start_applications

2018-09-12 Thread iilyak
Github user iilyak commented on the issue:

https://github.com/apache/couchdb-chttpd/pull/24
  
stale PR


---


[GitHub] couchdb-chttpd pull request #24: Use started apps from test_util:start_appli...

2018-09-12 Thread iilyak
Github user iilyak closed the pull request at:

https://github.com/apache/couchdb-chttpd/pull/24


---


[jira] [Commented] (COUCHDB-2552) unknown metric: [couchdb,mrview,map_docs]

2018-09-12 Thread ASF GitHub Bot (JIRA)


[ 
https://issues.apache.org/jira/browse/COUCHDB-2552?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16612076#comment-16612076
 ] 

ASF GitHub Bot commented on COUCHDB-2552:
-

Github user iilyak closed the pull request at:

https://github.com/apache/couchdb-couch/pull/32


> unknown metric: [couchdb,mrview,map_docs]
> -
>
> Key: COUCHDB-2552
> URL: https://issues.apache.org/jira/browse/COUCHDB-2552
> Project: CouchDB
>  Issue Type: Bug
>  Components: Database Core
>Reporter: ILYA
>Assignee: Alexander Shorin
>Priority: Major
>
> There is a typo in priv/stats_descriptions.cfg of mrview app. It contains 
> definition of map_doc metric which should be map_docs. 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[GitHub] couchdb-couch issue #32: Make sure we load all applications with stats defs

2018-09-12 Thread iilyak
Github user iilyak commented on the issue:

https://github.com/apache/couchdb-couch/pull/32
  
stale PR


---


[GitHub] couchdb-couch pull request #32: Make sure we load all applications with stat...

2018-09-12 Thread iilyak
Github user iilyak closed the pull request at:

https://github.com/apache/couchdb-couch/pull/32


---


[GitHub] ufobat opened a new pull request #324: Fixed typo in vm.args example

2018-09-12 Thread GitBox
ufobat opened a new pull request #324: Fixed typo in vm.args example
URL: https://github.com/apache/couchdb-documentation/pull/324
 
 
   I think in the vm.args example the line with  `-kernel inet_dist_listen_max 
9100`  should in fact be `-kernel inet_dist_listen_min 9100`
   
   ## Checklist
   
   - [x] Documentation is written and is accurate;
   - [ ] `make check` passes with no errors
   - [ ] Update 
[rebar.config.script](https://github.com/apache/couchdb/blob/master/rebar.config.script)
 with the commit hash once this PR is rebased and merged
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] couchdb-couch issue #208: format process state

2018-09-12 Thread iilyak
Github user iilyak commented on the issue:

https://github.com/apache/couchdb-couch/pull/208
  
stale PR


---


[jira] [Commented] (COUCHDB-1606) Replicator leaves plaintext password in logs

2018-09-12 Thread ASF GitHub Bot (JIRA)


[ 
https://issues.apache.org/jira/browse/COUCHDB-1606?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16612052#comment-16612052
 ] 

ASF GitHub Bot commented on COUCHDB-1606:
-

Github user iilyak closed the pull request at:

https://github.com/apache/couchdb-couch-replicator/pull/51


> Replicator leaves plaintext password in logs
> 
>
> Key: COUCHDB-1606
> URL: https://issues.apache.org/jira/browse/COUCHDB-1606
> Project: CouchDB
>  Issue Type: Bug
>  Components: Logging, Replication
>Affects Versions: 1.2
>Reporter: Nathan Vander Wilt
>Assignee: Bob Dionne
>Priority: Major
> Attachments: pwd log.txt
>
>
> While reviewing logs, I noticed that a password had been recorded in the logs 
> as part of a replicator error.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[GitHub] couchdb-couch pull request #208: format process state

2018-09-12 Thread iilyak
Github user iilyak closed the pull request at:

https://github.com/apache/couchdb-couch/pull/208


---


[GitHub] couchdb-couch-replicator issue #51: Format gen_server state to remove plain ...

2018-09-12 Thread iilyak
Github user iilyak commented on the issue:

https://github.com/apache/couchdb-couch-replicator/pull/51
  
stale PR


---


[GitHub] couchdb-couch-replicator pull request #51: Format gen_server state to remove...

2018-09-12 Thread iilyak
Github user iilyak closed the pull request at:

https://github.com/apache/couchdb-couch-replicator/pull/51


---


[GitHub] wohali commented on issue #105: Add Cluster Parameter Variables

2018-09-12 Thread GitBox
wohali commented on issue #105: Add Cluster Parameter Variables
URL: https://github.com/apache/couchdb-docker/pull/105#issuecomment-42050
 
 
   @ufobat Thanks again for your contribution. We're looking at new ways to 
make configuring CouchDB in Docker easier - like the contributed Helm chart for 
Kubernetes and use of the `etc/local.d` directory.
   
   I don't think environment variable-based configuration will be making a 
comeback.


This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services