big-r81 commented on issue #3996:
URL: https://github.com/apache/couchdb/issues/3996#issuecomment-1102840724

   Hi,
   
   you need to encode the `+` to `%2b`. A `+`in an url is a special char 
(whitespace).
   
   Try
   ```bash
   curl -X PUT http://127.0.0.1:15984/test%2bdatabase
   ```
   and you get
   ```json
   {"ok":true}
   ```
   List all dbs:
   ```json
   ["_replicator","_users","test","test+database"]
   ```
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to