以编程方式确定Zope是否以交互式控制台模式运行

时间:2016-04-07 02:47:15

标签: plone zope

我知道我可以使用以下方法以编程方式确定Zope是否在调试模式(bin/instance fg)下运行:

>>> import Globals
>>> Globals.DevelopmentMode
True

可以确定我是否以交互式控制台模式(bin/instance debug)启动了守护进程?

你可能认为这没有意义,但是当我以这种方式运行实例时,我遇到了包的问题:

https://github.com/collective/collective.fingerpointing/issues/30

1 个答案:

答案 0 :(得分:0)

我最后通过捕获结果异常来取代:

https://github.com/collective/collective.fingerpointing/pull/34