Skip to content

Commit 91a62b8

Browse files
committed
Fix terminate call.
1 parent ea9c9c7 commit 91a62b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rtp_cluster.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ def terminate(signum):
148148
sip_logger = SipLogger('rtp_cluster')
149149
global_config['_sip_logger'] = sip_logger
150150
LogSignal(sip_logger, signal.SIGUSR1, reopen, logfile, 'SIGUSR1')
151-
LogSignal(sip_logger, signal.SIGTERM, terminate)
151+
LogSignal(sip_logger, signal.SIGTERM, terminate, signal.SIGTERM)
152152

153153
sip_logger.write(' o initializing CLI...')
154154

0 commit comments

Comments
 (0)