[V3 Audio] fix zombie process on unload (#1575)

This commit is contained in:
palmtree5 2018-04-28 22:19:49 -08:00 committed by Kowlin
parent 83080bc5a2
commit d8c85a2b15

View File

@ -92,4 +92,5 @@ def shutdown_lavalink_server():
global proc
if proc is not None:
proc.terminate()
proc.wait()
proc = None