We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c5e6b1 commit 3af0092Copy full SHA for 3af0092
binderhub/launcher.py
@@ -287,7 +287,9 @@ async def handle_chunk(chunk):
287
self.log.debug("Requesting progress for {username}: {progress_api_url}")
288
resp_future = self.api_request(
289
progress_api_url,
290
- streaming_callback=handle_chunk,
+ streaming_callback=lambda chunk: asyncio.ensure_future(
291
+ handle_chunk(chunk)
292
+ ),
293
request_timeout=self.launch_timeout,
294
)
295
try:
0 commit comments