从mod_wsgi句柄运行一个瓶子应用程序会导致在调用Python对象时超出最大递归深度

时间:2012-03-22 00:01:11

标签: python mod-wsgi bottle openshift

我从我的瓶子应用程序中得到一个奇怪的“RuntimeError:调用Python对象时超出了最大递归深度”。在 openshift paas服务中从wsgi句柄(在virtualenv中)运行它。

回溯并没有给我一个关于错误的线索

我还应该提一下,直接在我的开发工具上运行瓶子脚本(例如python pythonapp.py)可以正常工作。

编辑:为了验证此问题已连接到使用mod_wsgi运行的瓶子,我将其安装在我的开发计算机上。跑直蟒蛇的作品。运行mod_wsgi给了我这个奇怪的RuntimeError 编辑结束

我在问题#201中看到了 这个问题已经“解决”了,但可能是另一个用例

我在Linux服务器上的python 2.6上使用了瓶子0.10.9

Critical error while processing request: /about
Error: RuntimeError('maximum recursion depth exceeded while calling a Python object',)
Traceback:
Traceback (most recent call last):
File "path/to/app/virtenv/lib/python2.6/site-packages/bottle-0.10.9-py2.6.egg/bottle.py",
line 824, in wsgi
    out = self._cast(self._handle(environ), request, response)

File "path/to/app/virtenv/lib/python2.6/site-packages/bottle-0.10.9-py2.6.egg/bottle.py",
line 780, in _cast
    return self._cast(out, request, response)


File "path/to/app/virtenv/lib/python2.6/site-packages/bottle-0.10.9-py2.6.egg/bottle.py",
line 780, in _cast
    return self._cast(out, request, response)

File "path/to/app/virtenv/lib/python2.6/site-packages/bottle-0.10.9-py2.6.egg/bottle.py",
line 780, in _cast
    return self._cast(out, request, response)

File "path/to/app/virtenv/lib/python2.6/site-packages/bottle-0.10.9-py2.6.egg/bottle.py",
line 780, in _cast
    return self._cast(out, request, response)

File "path/to/app/virtenv/lib/python2.6/site-packages/bottle-0.10.9-py2.6.egg/bottle.py",
line 780, in _cast
    return self._cast(out, request, response)

File "path/to/app/virtenv/lib/python2.6/site-packages/bottle-0.10.9-py2.6.egg/bottle.py",
line 780, in _cast
    return self._cast(out, request, response)

File "path/to/app/virtenv/lib/python2.6/site-packages/bottle-0.10.9-py2.6.egg/bottle.py",
line 780, in _cast
    return self._cast(out, request, response)

File "path/to/app/virtenv/lib/python2.6/site-packages/bottle-0.10.9-py2.6.egg/bottle.py",
line 780, in _cast
    return self._cast(out, request, response)

File "path/to/app/virtenv/lib/python2.6/site-packages/bottle-0.10.9-py2.6.egg/bottle.py",
line 780, in _cast
    return self._cast(out, request, response)
RuntimeError: maximum recursion depth exceeded while calling a Python object

WSGI句柄:

#!/usr/bin/python

import os
import sys
here = os.path.dirname(os.path.abspath(__file__))


try:
    os.environ['PYTHON_EGG_CACHE'] = os.path.join(os.environ['OPENSHIFT_APP_DIR'],'virtenv/lib/python2.6/site-packages')

except:
    os.environ['PYTHON_EGG_CACHE'] = os.path.join(here,'..','data/virtenv/lib/python2.6/site-packages')

print ('python egg cache set to: %s' % os.environ['PYTHON_EGG_CACHE'])
try:

    virtualenv = os.path.join(os.environ['OPENSHIFT_APP_DIR'],"virtenv/bin/activate_this.py")
except:
    virtualenv = os.path.join(here,'..',"data/virtenv/bin/activate_this.py")

print ('virtualenv is in:%s' % virtualenv)
try:
    execfile(virtualenv, dict(__file__=virtualenv))
    print ('executed')
    sys.path.append(here)

except IOError:
    pass

from myapp import application

myapp.py文件:

#!/bin/usr/env python
#-*- coding:UTF-8 -*-

from bottle import route,run, view, error, static_file, debug, url, redirect, request, response,  default_app

from wikifetch import init_db,load_session,Wikilink, statistic, wiki_populate
import bottle
from sqlalchemy.exc import StatementError
#from config import production_port, production_server
import json
debug(True)
bottle.TEMPLATE_PATH.append("./views")

init_db()
session = load_session()
try:
    stats = statistic()
except:
    print ("no data yet")
    pass

@route('/wsgi')
def show_ip():
    env = request.environ
    for k,v in env.items():
        print k,": ",v
    return env

@route()
def default():
    redirect("/monitor")

@route(["/monitor","/index","/"])
@view("monitor")
def monitor():
    title = request.query.title
    page = request.query.page or 0
    page = int(page)
    try:
        total = stats[0]
        all = session.query(Wikilink).filter(Wikilink.title.like('%'+ title +'%')).count()
        monitor = session.query(Wikilink).order_by('title').filter(Wikilink.title.like('%'+ title +'%')).offset(page*20).limit(20).all() #filter(Wikilink.id>(page*20))
        #print "page=",page," title=",title,
    except StatementError:
        session.rollback()
        #session.begin()

    #print monitor
    return dict(monitor=monitor,pages=(all/20),number=all,total = total)

@route("/why")
@view("why")
def why():
    return dict()

@route("/about")
@view("about")
def about():
    return dict()

@route("/learned")
@view("learned")
def learned():
    return dict()



@route("/stats")
@view("stats")
def statistic():
    return dict(stats= stats)

@route ("/static/<filepath:path>", name="static")
def static(filepath):
    #print 'yey', filepath
    return static_file(filepath,root = "./static/")


@error(404)
def error404(error):
    return static_file('404.html',root="./static")

#@error(502)
@error(500)
def error500(error):
    return static_file('500.html', root = "./static")

application = default_app()

if __name__ =='__main__':
    from wsgiref.simple_server import make_server #using the builtin wsgi server
    httpd = make_server('localhost', 8052, application)

我会很高兴任何调试线索。

编辑:我尝试将递归限制设置得更低,但是当我超过其他事情失败的水平时,它会失败其他东西(path.append,sqlalchemy等...)(准确地说是37) )然后我收到此错误消息。当我添加错误日志时,我能够在错误堆栈之前生成另外两行:

[Mon Mar 26 14:50:52 2012] [error] no data yet #if you look in the code above - means that wikiwatch.py file passed the first 'stats' function

[Mon Mar 26 14:50:52 2012] [error] /home/usrname/workspace/appname/data/virtenv/lib/python2.6/site-packages/bottle.py:824: DeprecationWarning: Error handlers must not return :exc:`HTTPResponse`.
[Mon Mar 26 14:50:52 2012] [error]   out = self._cast(self._handle(environ), request, response)

1 个答案:

答案 0 :(得分:1)

您的代码正在触发错误处理程序,似乎处理程序引发了另一个错误。

由于它在没有wsgi处理程序的情况下工作,它可能是一个触发初始错误的路径问题。您可以尝试禁用错误处理程序以查看瓶子错误页面,这可能会解决问题。

在处理程序中引发的错误中,我注意到在static()函数中,您使用关键字参数root="./static/",而在错误处理程序中,您省略了尾部斜杠。