Tapple Gao

Results 14 comments of Tapple Gao

"default" response is a specifier for any status code that doesn't have an entry. It usually is for specifying the schema of error responses

I vote for saving it as a .svg file, so it's still zoomable, and draggable in inkscape.

I'm having the same problem. I'm trying to use tcpflow to follow a REST API. Here's a pcap of a very simple request + response. It's only 7 packets [request.zip](https://github.com/simsong/tcpflow/files/1484113/request.zip)...

SetManager.flush seems to be here: https://github.com/robinhood/faust/blob/master/faust/tables/objects.py#L145-L149

> SetManager.flush seems to be here: https://github.com/robinhood/faust/blob/master/faust/tables/objects.py#L145-L149 Is that self.sleep(sleeptime) supposed to be there? I feel like there shouldn't be a sleep inside a timer

If I comment out `await self.sleep(sleep_time)`, the warning goes away, and cpu usage is still mostly idle, so, I think this might be the correct fix

Here's the workaround. It works: ```python import faust app = faust.App('example', broker='kafka://') class StringModel(faust.Record): string_value: str int_topic = app.topic( 'int_topic', key_type=int, value_type=StringModel, internal=True, ) str_topic = app.topic( 'str_topic', key_type=str, value_type=StringModel,...

as a newbie, I was looking for a way to route an output stream to an input stream, and I thought StapledStream would do that, since I assume it's a...

I did some more testing. It looks like there's a lot more than pid 17320 where there's a mismatch: ```python >>> import psutil >>> import psutil._psutil_windows >>> pidinfo = []...

Since this is a permission denied error, I thought I'd see what happens if I actually used multiple users (I ran these tests on windows 10, not 11) on tapple...