我偶然发现了一个我无法解决的奇怪异常......任何人都可以提出错误或新设计的建议吗?我正在运行Gunicorn / Flask应用程序。在配置文件中,我指定了一些与on_starting
挂钩[1]有关的工作。在钩子代码里面,我有一些这样的代码(没什么特别的):
# Called before the server is started
my_thread = package.MyThread()
my_thread.start()
package.MyThread类如下所示。 ls
命令不重要,可以是任何命令。
class MyThread(threading.Thread):
"""
Run a command every 60 seconds.
"""
def __init__(self):
threading.Thread.__init__(self)
self.event = threading.Event()
def run(self):
while not self.event.is_set():
ptest = subprocess.Popen(["ls"], stdout=subprocess.PIPE)
ptest.communicate()
self.event.wait(60)
def stop(self):
self.event.set()
启动服务器后,我总是会遇到以下异常:
Exception in thread Thread-1:
Traceback (most recent call last):
File "/usr/lib64/python2.6/threading.py", line 532, in __bootstrap_inner
self.run()
File "__init__.py", line 195, in run
ptest.communicate()
File "/usr/lib64/python2.6/subprocess.py", line 721, in communicate
self.wait()
File "/usr/lib64/python2.6/subprocess.py", line 1288, in wait
pid, sts = _eintr_retry_call(os.waitpid, self.pid, 0)
File "/usr/lib64/python2.6/subprocess.py", line 462, in _eintr_retry_call
return func(*args)
OSError: [Errno 10] No child processes
有谁可以建议这里发生了什么?我没有尝试在[2]中实现这些变化,它们看起来很糟糕。
[1] - http://gunicorn.org/configure.html#server-hooks
[2] - Popen.communicate() throws OSError: "[Errno 10] No child processes"
答案 0 :(得分:3)
错误结果与SIGCHLD
的信号处理有关。
gunicorn
仲裁者拦截SIGCHLD
,其中subprocess.Popen
。 subprocess.Popen
模块要求SIGCHLD
不被拦截(至少,对于Python 2.6及更早版本,这是正确的)。
根据bugs.python.org,这个错误已在Python 2.7中修复。