Gregg Caines
Gregg Caines
Well I'd like to see a reproduction that just uses this library alone to start. This script is pretty minimal and has some fairly light dependencies, so it's tough to...
@rayshan this is an issue with the node-coveralls tests, not node-coveralls itself. Unless bower is running the node-coveralls tests (and I don't know why it would) this issue shouldn't cause...
Awesome. :) If I was going to do this, I'd start it as a new node package/project on its own (one that uses Prozess). You can still slap "Prozess" into...
I don't think you're missing anything. This sounds like a legitimate issue (that we haven't seen yet in production). Thanks for logging it.
Hmmm... on second thought, I just tested this (with produce_test.js), and I can't reproduce the issue. In your scenario, a subsequent call to Producer.send() will result in a failed write,...
Well first off, don't get me wrong: if it's a real bug, we want to patch it. :) Also, I believe what you're saying is happening. What I'm saying though...
Currently [it restricts the methods](https://github.com/cainus/percolator/blob/master/lib/Percolator.js#L174), but you're probably right and it really should allow [everything that node does](https://github.com/joyent/node/blob/597eb6a5aebbc2afbd76d16e568a86ed28509bc7/deps/http_parser/test.c#L3380) .
I just realized that the interface must optionally include the full body of the response, in case the etag depends on it (eg it's a hash of the body). If...
It's somewhat frozen right now. I've been happily using it quite a lot for a couple of years now, but I've started working on version 2, so I'm not spending...
Actually, you've got the solution for getting custom payloads working... just don't call `cb(true);` after. That callback is the default handler, so if you provide your own handling, you don't...