From 39469d3f881f532497a3587a5fd0e0702d3c4eb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Lebleu?= Date: Wed, 1 Apr 2020 19:01:06 +0200 Subject: [PATCH] Use stop instead of kick to disconnect the source --- python_apps/pypo/pypo/telnetliquidsoap.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python_apps/pypo/pypo/telnetliquidsoap.py b/python_apps/pypo/pypo/telnetliquidsoap.py index 6845cd091..c294a3b0f 100644 --- a/python_apps/pypo/pypo/telnetliquidsoap.py +++ b/python_apps/pypo/pypo/telnetliquidsoap.py @@ -234,9 +234,9 @@ class TelnetLiquidsoap: self.logger.debug('Disconnecting source: %s', sourcename) command = "" if(sourcename == "master_dj"): - command += "master_harbor.kick\n" + command += "master_harbor.stop\n" elif(sourcename == "live_dj"): - command += "live_dj_harbor.kick\n" + command += "live_dj_harbor.stop\n" try: self.telnet_lock.acquire()