On May 9, 2014, at 8:06 AM, Dave Holdsworth <[email protected]> wrote:
> I've just been using httpie to play around with sync_gateway using walrus. > I've set up a public channel with guest accounts. > Calling the Admin API for _changes on 4985 in one window and PUT a doc on > 4984 in another. > Changes came through immediately for feed==longpoll but when I tried > feed==continuous it took 5mins to get changes on one occasion and not at all > on another. That's an issue with httpie, and you're not the first to run into it :) Basically, it wants to read the entire response into memory first and then print it. But the continuous changes feed never ends, so the response is never complete. I think there's some flag to httpie to disable that, but I just use 'curl' instead whenever I want to look at continuous changes. --Jens -- You received this message because you are subscribed to the Google Groups "Couchbase Mobile" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/mobile-couchbase/818786B9-1EB3-4B21-B32A-F682F409775E%40couchbase.com. For more options, visit https://groups.google.com/d/optout.
