sensiblearts commented on issue #1019: couch_peruser database 'does not exist' 
-- but I can see userdb- in Fauxton
URL: https://github.com/apache/couchdb/issues/1019#issuecomment-346913037
 
 
   My hex conversion of the _id was mostly numbers, and I did not notice that 
the alpha chars were uppercase!
   
   Instead of
   ```elixir
   couch_db = "userdb-#{user_id |> Base.encode16}"
   ```
   I had to use
   ```elixir
   couch_db = "userdb-#{user_id |> Base.encode16 |> String.downcase}"
   ```
   Sorry to trouble you on this.

----------------------------------------------------------------
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:
[email protected]


With regards,
Apache Git Services

Reply via email to