Edgewall Software

Ticket #6614: single-threaded-tracd.diff

File single-threaded-tracd.diff, 501 bytes (added by cboos, 10 months ago)

disables multi-threading for tracd

  • trac/web/standalone.py

     
    8989        return self.application(environ, start_response) 
    9090 
    9191 
    92 class TracHTTPServer(ThreadingMixIn, WSGIServer): 
     92class TracHTTPServer(WSGIServer): 
    9393 
    9494    def __init__(self, server_address, application, env_parent_dir, env_paths): 
    9595        WSGIServer.__init__(self, server_address, application,