~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: John Arbash Meinel
  • Date: 2011-04-12 10:18:52 UTC
  • mto: This revision was merged to the branch mainline in revision 446.
  • Revision ID: john@arbash-meinel.com-20110412101852-qekuhv1e7letqtfm
Quick-fix for bug #758618.

If HeadMiddleware is buggy, just don't use it for now.

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