web-dev-qa-db-ja.com

uWSGIでpythonアプリケーションをデバッグするには?

python pdbデバッガーをuWSGIで使用しようとすると、実行はブレークポイントで停止せず、トラックバックを返すだけです。

コードは次のとおりです。

def application(env, start_response):
    import pdb; pdb.set_trace()
    start_response('200 OK', [('Content-Type','text/html')])
    return "Hello World"

これは私がそれを実行する方法です:

uwsgi --http 127.0.0.1:7777  --wsgi-file uwsgi_test.py

これは私が得るものです:

/home/andrey/Development/ttt/uwsgi_test.py(3)application()
-> start_response('200 OK', [('Content-Type','text/html')])
(Pdb) 
Traceback (most recent call last):
  File "uwsgi_test.py", line 3, in application
    start_response('200 OK', [('Content-Type','text/html')])
  File "uwsgi_test.py", line 3, in application
    start_response('200 OK', [('Content-Type','text/html')])
  File "/usr/lib/python2.7/bdb.py", line 48, in trace_dispatch
    return self.dispatch_line(frame)
  File "/usr/lib/python2.7/bdb.py", line 67, in dispatch_line
    if self.quitting: raise BdbQuit
bdb.BdbQuit
[pid: 11421|app: 0|req: 1/1] 127.0.0.1 () {32 vars in 366 bytes} [Sun Aug 25 13:12:06 2013] GET / => generated 0 bytes in 63 msecs (HTTP/1.1 500) 0 headers in 0 bytes (0 switches on core 0)
33
Anderson

サーバーであるため、uWSGIはstdinを閉じます(事実上、/ dev/nullに再マップします)。

Stdinが必要な場合(ターミナルデバッガが必要な場合など)を追加します。

--honour-stdin
67
roberto

リモートデバッガーをインストールします。

pip install remote-pdb

アプリケーションのどこかにブレークポイントを設定します。

from remote_pdb import RemotePdb
RemotePdb('127.0.0.1', 4444).set_trace()

Telnet経由でリモートデバッガーに接続する

# Restart uwsgi to pick up changes
...

# Trigger the breakpoint, (any action to evaluate the set_trace call)
...

# Connect to debugger
telnet 127.0.0.1 4444

リモートデバッガーが互いに踏まないように、単一のワーカー/スレッドでuWSGIを実行することができます。

14
cdosborn