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.
2 parents 50ee5f9 + 04bb229 commit cbd61deCopy full SHA for cbd61de
requirements.txt
@@ -3,4 +3,4 @@ httpx[http2]~=0.23
3
polling2~=0.5
4
toml~=0.10.2
5
prometheus-client~=0.16.0
6
-speechmatics-python~=1.9.0
+speechmatics-python~=1.11.1
stream_transcriber/streams.py
@@ -277,10 +277,11 @@ async def load_stream(stream_name: str):
277
)
278
await force_close_connections(stream)
279
sm_client.stop()
280
- await process.kill()
281
- await asr_task.cancel()
282
- await stream_clone_task.cancel()
283
- await send_audio_task.cancel()
+
+ process.kill()
+ asr_task.cancel()
+ stream_clone_task.cancel()
284
+ send_audio_task.cancel()
285
286
LOGGER.info("Finished transcription", extra={"stream": stream_name})
287
0 commit comments