Skip to content

Commit

Permalink
Fix terminate call.
Browse files Browse the repository at this point in the history
  • Loading branch information
sobomax committed Apr 2, 2024
1 parent e371568 commit 918240a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rtp_cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def terminate(signum):
sip_logger = SipLogger('rtp_cluster')
global_config['_sip_logger'] = sip_logger
LogSignal(sip_logger, signal.SIGUSR1, reopen, logfile, 'SIGUSR1')
LogSignal(sip_logger, signal.SIGTERM, terminate)
LogSignal(sip_logger, signal.SIGTERM, terminate, signal.SIGTERM)

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

Expand Down

0 comments on commit 918240a

Please sign in to comment.