~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to start-loggerhead

  • Committer: Michael Hudson
  • Date: 2009-02-10 01:25:34 UTC
  • Revision ID: michael.hudson@canonical.com-20090210012534-gnj6tf3iryq6wqiv
apply neror's patch to fix bug #260547 ("start-loggerhead script doesn't properly set the wsgi.url_scheme from the server.webpath option")

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
import sys
24
24
import urlparse
25
25
 
26
 
from bzrlib.plugin import load_plugins
27
26
from bzrlib.util.configobj.configobj import ConfigObj
28
27
 
29
28
from paste import httpserver
119
118
            environ['wsgi.url_scheme'] = scheme
120
119
            return orig(environ, start_response)
121
120
 
122
 
    load_plugins()
123
 
 
124
121
    try:
125
122
        httpserver.serve(
126
123
            app, host=server_host, port=server_port,