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