You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@couchdb.apache.org by "ASF GitHub Bot (JIRA)" <ji...@apache.org> on 2014/09/05 00:03:23 UTC

[jira] [Commented] (COUCHDB-1438) GET /// triggers a 500 error

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

ASF GitHub Bot commented on COUCHDB-1438:
-----------------------------------------

Github user robertkowalski commented on the pull request:

    https://github.com/apache/couchdb/pull/122#issuecomment-54551930
  
    Seems to be fixed on an upcoming Couch 2.0:
    
    ```
    (23:56:55) [robert@tequila-osx] ~/apache/couchdb (master) $ ./dev/run
    ```
    
    ```
    (23:59:14) [robert@tequila-osx] ~ $ curl -i http://localhost:15984/
    HTTP/1.1 200 OK
    X-CouchDB-Body-Time: 0
    X-Couch-Request-ID: e4310f0f
    Server: CouchDB/1705267 (Erlang OTP/17)
    Date: Thu, 04 Sep 2014 21:59:33 GMT
    Content-Type: text/plain; charset=utf-8
    Content-Length: 93
    Cache-Control: must-revalidate
    
    {"couchdb":"Welcome","version":"1705267","vendor":{"name":"The Apache Software Foundation"}}
    (23:59:33) [robert@tequila-osx] ~ $ curl -i http://localhost:15984//
    HTTP/1.1 200 OK
    X-CouchDB-Body-Time: 0
    X-Couch-Request-ID: 6c9a3bf1
    Server: CouchDB/1705267 (Erlang OTP/17)
    Date: Thu, 04 Sep 2014 21:59:36 GMT
    Content-Type: text/plain; charset=utf-8
    Content-Length: 93
    Cache-Control: must-revalidate
    
    {"couchdb":"Welcome","version":"1705267","vendor":{"name":"The Apache Software Foundation"}}
    ```
    
    @rnewson @davisp  what do you think?


> GET /// triggers a 500 error
> ----------------------------
>
>                 Key: COUCHDB-1438
>                 URL: https://issues.apache.org/jira/browse/COUCHDB-1438
>             Project: CouchDB
>          Issue Type: Bug
>          Components: HTTP Interface
>    Affects Versions: 1.2
>            Reporter: Jason Smith
>            Assignee: Jason Smith
>            Priority: Minor
>              Labels: http
>
> I just noticed this.
> $ curl -i http://localhost:5984//
> HTTP/1.1 500 Internal Server Error
> Server: CouchDB/1.2.0 (Erlang OTP/R15B)
> Date: Tue, 13 Mar 2012 08:48:46 GMT
> Content-Type: text/plain; charset=utf-8
> Content-Length: 53
> Cache-Control: must-revalidate
> {"error":"unknown_error","reason":"function_clause"}
> That's weird. Usually CouchDB strips trailing slashes:
> $ curl http://localhost:5984/x/////
> {"db_name":"x","doc_count":1,...}
> $ curl http://localhost:5984/x/blah/////
> {"_id":"blah","_rev":"2-6c4b3bc6c2fdc5043139942dc6f1b994","_attachments":{"out.txt" ...
> $ curl http://localhost:5984/x/blah////out.txt///////
> Hello, world!



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)