You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@couchdb.apache.org by Daniel Wertheim <da...@wertheim.se> on 2014/05/17 13:09:50 UTC

_replicator issues with authentication

Tried on clean install on Windows, CouchDb v1.5.1

========
PUT /_replicator/test1
{
    "source": "srcDb",
    "target": "http://sa:p%40ssword@localhost:5984/trgDb",
    "continous": true,
    "create_target": true
}
========

Which **FAILS** due to not being able to handle a `encoded password`. If I
change it in CouchDb to be e.g. "password " instead of "p@ssword", it works
with:

========
{
    ...
    "target": "http://sa:password@localhost:5984/trgDb",
    ...
}
========

Known issue or am I misunderstanding something?

//Daniel