Endpoints stop responding when plugin is connected #133
Labels
impact: small
Minor papercuts in Rojo that don't warrant immediate resolutoin.
regression
This bug wasn't a bug in a previous version of Rojo
scope: cli
Relevant to the Rojo CLI
type: bug
Something happens that shouldn't happen
The upgrade from Rouille to Hyper is good, but Rojo's internal message queue is still using a synchronous channel for responding to a client's long-polling request.
With Rouille, this worked fine, because it uses a large thread pool. With Hyper, this is problematic because it ties up a thread that's expected to return quickly with a
Future
result.The text was updated successfully, but these errors were encountered: