~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to __init__.py

  • Committer: Jelmer Vernooij
  • Date: 2011-03-25 11:38:43 UTC
  • mto: This revision was merged to the branch mainline in revision 444.
  • Revision ID: jelmer@samba.org-20110325113843-1r700vaj6ndlqjux
Fix showing of foreign revision ids.

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
 
        # 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)
 
89
        app = HeadMiddleware(app)
93
90
        app = HTTPExceptionHandler(app)
94
91
        serve(app, host=host, port=port)
95
92