I have a web dyno that handles all my web requests. If a request comes in that is a long-pooling request how to you pass that connection off to a worker dyno?
Ex. Request to example.com/long-pooling handled by web dyno needs to be passed to worker dyno to free up the web dyno for more requests.
Thanks.