jupyter_client icon indicating copy to clipboard operation
jupyter_client copied to clipboard

Fix blocking issue in Voila (nbclient case)

Open martinRenou opened this issue 6 months ago • 2 comments

Fixing https://github.com/voila-dashboards/voila/issues/1428

The issue is that when using the AsyncKernelMappingManager in Voila, we asynchronously poll messages, but on the jupyter-client side we have a synchronous socket. Asynchronously waiting for a message on a synchronous socket seems to be the culprit for Voila getting stuck.

martinRenou avatar Apr 08 '25 12:04 martinRenou