所以说我在一个相当复杂的 Flask 应用程序中有两个函数。一个函数调用另一个函数。
def dispatch_unlock(...):
# ... stuff ...
log('dis start')
# this routine just sends some data over a ZMQ IPC socket
# in this scenario, the socket send will time out
ret = acl.enqueue(unlock.id, endpoint_id, filter_entry['service_id'])
log('dis end')
return ret
def something_else(...);
# ... stuff ...
log('routecall start')
ret = dispatch_unlock(unlock, endpoint_id, endpoint, f)
log('routecall end')
return ret
运行时something_else
,会产生以下输出:
routecall start
dis start
dis end
之后,它就挂断了。我尝试转储 Python 堆栈跟踪,但它们没有显示任何有用的信息。一个堆栈跟踪位于 Werkzurg 重新加载器中,另一个是通向由SIGUSR1
.
谁能建议到底发生了什么?Python调用堆栈是否以某种方式损坏了?
编辑:这是pdb
我在返回之前单步执行时显示的内容。看起来调用框架上方的框架dispatch_unlock
不知何故丢失了。
> /SourceCache/Florence/lib/plugin/route.py(27)dispatch_unlock()
-> return ret
(Pdb) s
--Return--
> /SourceCache/Florence/lib/plugin/route.py(27)dispatch_unlock()->None
-> return ret
(Pdb) s