mirror of
https://github.com/searxng/searxng.git
synced 2024-11-05 21:00:13 +01:00
Merge pull request #2657 from cyclaero/conditional-sigusr1
Windows does not support SIGUSR1, so don't use it unconditionally.
This commit is contained in:
commit
11070e5744
@ -94,6 +94,8 @@ def _signal_handler(signum, frame):
|
|||||||
|
|
||||||
|
|
||||||
def initialize():
|
def initialize():
|
||||||
|
if hasattr(signal, 'SIGUSR1'):
|
||||||
|
# Windows doesn't support SIGUSR1
|
||||||
logger.info('Send SIGUSR1 signal to pid %i to start the checker', os.getpid())
|
logger.info('Send SIGUSR1 signal to pid %i to start the checker', os.getpid())
|
||||||
signal.signal(signal.SIGUSR1, _signal_handler)
|
signal.signal(signal.SIGUSR1, _signal_handler)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user