> Hello, > Am I missing something or is it impossible to use a pdb break point with > the threaded HTTP server --http. When I add a break point in my code, > something like: > import ipdb; ipdb.set_trace() > > I see the break point in the console but the server does not stop. > > Regards, > --yml > _______________________________________________ >
The http server lives in another process (it is a http->uwsgi proxy), you can stop the backend (uwsgi workers) but not the frontend (the http proxy) -- Roberto De Ioris http://unbit.it _______________________________________________ uWSGI mailing list [email protected] http://lists.unbit.it/cgi-bin/mailman/listinfo/uwsgi
