Add log for thread error on helper_generic file

- Remove if condition for RegExParser
This commit is contained in:
Mahendra 2018-04-06 19:00:32 +05:30
parent c0036d8c18
commit 7052c734bd
No known key found for this signature in database
GPG Key ID: A672D8FAAEE398B3
1 changed files with 4 additions and 7 deletions

View File

@ -1,5 +1,5 @@
"""This module is to perform generic oprations for threading."""
"""and some conversion operations."""
"""And some conversion operations."""
import socket
import sys
@ -12,6 +12,7 @@ import shared
from debug import logger
import queues
import shutdown
from debug import logger
def powQueueSize():
@ -20,8 +21,8 @@ def powQueueSize():
try:
if thread.name == "singleWorker":
curWorkerQueue += thread.busy
except Exception:
print ""
except Exception as err:
logger.info("Thread error %s", err)
return curWorkerQueue
@ -57,10 +58,6 @@ def signal_handler(signal, frame):
logger.error("Got signal %i in %s/%s", signal,
current_process().name,
threading.current_thread().name)
if current_process().name == "RegExParser":
# on Windows this isn't triggered, but it's fine,
# it has its own process termination thing
raise SystemExit
if "PoolWorker" in current_process().name:
raise SystemExit
if threading.current_thread().name not in (