~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Jasper St. Pierre
  • Date: 2011-04-22 18:18:02 UTC
  • mto: This revision was merged to the branch mainline in revision 448.
  • Revision ID: jstpierre@mecheye.net-20110422181802-7y2yambz9iscfa17
Make breadcrumbs consistent

Show diffs side-by-side

added added

removed removed

Lines of Context:
86
86
        config = LoggerheadConfig(argv)
87
87
        setup_logging(config, init_logging=False, log_file=sys.stderr)
88
88
        app = BranchesFromTransportRoot(transport.base, config)
89
 
        app = HeadMiddleware(app)
 
89
        # Bug #758618, HeadMiddleware seems to break HTTPExceptionHandler from
 
90
        # actually sending appropriate return codes to the client. Since nobody
 
91
        # desperately needs HeadMiddleware right now, just ignoring it.
 
92
        # app = HeadMiddleware(app)
90
93
        app = HTTPExceptionHandler(app)
91
94
        serve(app, host=host, port=port)
92
95