Nick Vatamaniuc

Results 338 comments of Nick Vatamaniuc

I wasn't able to tell if it's the _view results query you're asking about. If it is, when you're updating documents, it may take some time for the documents to...

You could try adding an extra function clause to `couch_mrview_http:view_cb/2` to log the error with `couch_log:error(...)`. ```erlang view_cb({row, Row}, #vacc{meta_sent=true}=Acc) -> % Adding another row Chunk = [prepend_val(Acc), row_to_json(Row)], maybe_flush_response(Acc#vacc{row_sent=true},...

@cpallavi make sure all the nodes in the cluster share the same config file (ini) passwords, server uuids values and cookie secret, and of course Erlang cluster cookies so that...

Thanks for taking a look, @tsloughter. It's much appreciated. For raw dependencies, would it be feasible to turn those into empty/no-op erlang apps so they can compile and build like...

> If you are able to control the dependencies then yes, turning them into empty erlang apps should work. They wouldn't be included in the release, so would just be...

Some progress * Basic Erlang app structure in raw dependencies seems to have worked (thanks, Tristan!) * Created an initially broken symlink from `src/{docs|fauxton} -> _build/_build/default/lib/{docs|fauxton}` which later gets filled...

@jaydoane good idea to try. The version we have is pretty old. But I suspect in this case it's the issue with odd paths we expect these NIFs to have...

Thanks for your report @billoty. It seems that section of the documentation hasn't been updated since we switched to requiring an admin password to be set up by default. Try...

@ryuusama09 thanks for wanting to take a look! The main task would be to go through the replication (and possibly other docs) in the `src/docs` folder and see if there...

Previously, when the md version was stale we should have only revalidated each db_version (a single key read) to check that particular db hasn't changed. And if it hasn't, we...