search for: wsgiapp

Displaying 4 results from an estimated 4 matches for "wsgiapp".

2017 Nov 07
2
Problem with getting restapi up&running
...sr/lib/python2.7/site-packages/gunicorn/workers/base.py", line 135, in load_wsgi self.wsgi = self.app.wsgi() File "/usr/lib/python2.7/site-packages/gunicorn/app/base.py", line 67, in wsgi self.callable = self.load() File "/usr/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 65, in load return self.load_wsgiapp() File "/usr/lib/python2.7/site-packages/gunicorn/app/wsgiapp.py", line 52, in load_wsgiapp return util.import_app(self.app_uri) File "/usr/lib/python2.7/site-packages/gunicorn/util.py", line 352, in import_app...
2012 Mar 22
0
problems configuring cluster to lucci and virtual machines resource
...ackages/beaker/middleware.py', line 152 in __call__ return self.wrap_app(environ, session_start_response) File '/usr/lib/python2.6/site-packages/routes/middleware.py', line 130 in __call__ response = self.app(environ, start_response) File '/usr/lib/python2.6/site-packages/pylons/wsgiapp.py', line 125 in __call__ response = self.dispatch(controller, environ, start_response) File '/usr/lib/python2.6/site-packages/pylons/wsgiapp.py', line 324 in dispatch return controller(environ, start_response) File '/usr/lib64/python2.6/site-packages/luci/controllers/root.py...
2010 Feb 11
1
[PATCH] Provides a reference implementation management server.
...lass RootController(BaseController): + """ + The root controller for the server application. + + All the other controllers and WSGI applications should be mounted on this + controller. For example:: + + panel = ControlPanelController() + another_app = AnotherWSGIApplication() + + Keep in mind that WSGI applications shouldn't be mounted directly: They + must be wrapped around with :class:`tg.controllers.WSGIAppController`. + + """ + + error = ErrorController() + + @expose('ovirtserver.templates.index') + def index(se...
2010 Feb 17
0
[PATCH] Provides the new node lifecycle events.
...lass RootController(BaseController): - """ - The root controller for the server application. - - All the other controllers and WSGI applications should be mounted on this - controller. For example:: - - panel = ControlPanelController() - another_app = AnotherWSGIApplication() - - Keep in mind that WSGI applications shouldn't be mounted directly: They - must be wrapped around with :class:`tg.controllers.WSGIAppController`. - - """ - - error = ErrorController() - - @expose('ovirtserver.templates.index') - def index(se...