Justin Karneges
Justin Karneges
I'm getting this assertion error: lthread/src/lthread_sched.c:252: lthread_run: Assertion `lt_write != ((void *)0) || lt_read != ((void *)0)' failed. Trying this with some basic code: ``` pollfd p; memset(&p, 0, sizeof(p));...
Hi folks, I'm using `LocalPool` and `run_until_stalled` to be able to run the executor and reactor in the same thread. Basically I have a loop that goes something like: ```rust...
The engine.io client is so close to a polyfill for the browser WebSocket class that I wonder if it shouldn't match the interface? E.g. setting callbacks with `onmessage = func`...
Currently the Docker image doesn't run on Macs with Apple silicon (arm64).
It would be nice if Pushpin could automatically respond to ping messages rather than forwarding to the backend. Ideally this would work for not just literal PING frames, but also...
Pushpin has some features that aren't covered in the GRIP spec or anywhere. They should be documented.
It would be useful to be able to have multiple subscribers to one channel, but have Pushpin deliver each message only to one of the subscribers (round robin) rather than...
We should offer some extra metrics: * report: number of new connections * report: number of disconnections
Currently, SIGHUP only reloads the routes file but not the whole configuration. We should consider a way to reload the whole configuration without having to disconnect clients.
With HTTP streaming, it's possible to set a "next link". Next links are followed without passing along extra headers, such as the original client request headers. This means authenticating a...