Hi, i am currently trying to replicate a couchDB Database from the net (in this case the npmjs repo at http://isaacs.iriscouch.com/registry/) with the command:
curl -H 'Content-Type: application/json' -X POST http://localhost:5984/_replicate -d ' {"source":"http://isaacs.iriscouch.com/registry","target":"http://admin:[email protected]:5984/registry"}' Unfortunately i am running in errors which happen a while after the replication starts up: [error] [emulator] Error in process <0.1337.0> with exit value: {{badmatch,{"--cace6be2d1fb028f452235fec8c5879b",[]}},[{couch_httpd,split_header,1},{couch_httpd,'-parse_part_header/1-fun-1-',2},{lists,foldl,3},{couch_httpd,parse_part_header,1},{couch_httpd,parse_multipart_request... [error] [<0.105.0>] {error_report,<0.30.0>, {<0.105.0>,crash_report, [[{initial_call, {mochiweb_socket_server,init,['Argument__1']}}, {pid,<0.105.0>}, {registered_name,[]}, {error_info, {exit,eaddrinuse, [{gen_server,init_it,6}, {proc_lib,init_p_do_apply,3}]}}, {ancestors, [couch_secondary_services,couch_server_sup, <0.31.0>]}, {messages,[]}, {links,[<0.93.0>]}, {dictionary,[]}, {trap_exit,true}, {status,running}, {heap_size,987}, {stack_size,24}, {reductions,459}], []]}} I suppose it is because one of the entries is "bogus". After some search i found these issues: https://issues.apache.org/jira/browse/COUCHDB-1368 https://issues.apache.org/jira/browse/COUCHDB-1639 which are supposed to be fixed in 1.3.1, which i am running and also iriscouch has recently updated to. Is there still an issue with this in 1.3.1 or am i missing something here? Sebastian
