remove double & in the url, though seems like couchdb does not mind...

This commit is contained in:
kimchy 2010-09-27 23:04:44 +02:00
parent 48bd9a2076
commit f01f5ab323
1 changed files with 1 additions and 1 deletions

View File

@ -259,7 +259,7 @@ public class CouchdbRiver extends AbstractRiverComponent implements River {
} }
} }
String file = "/" + couchDb + "/_changes?feed=continuous&include_docs=true&&heartbeat=10000"; String file = "/" + couchDb + "/_changes?feed=continuous&include_docs=true&heartbeat=10000";
if (couchFilter != null) { if (couchFilter != null) {
file = file + "&filter=" + couchFilter; file = file + "&filter=" + couchFilter;
} }