Mercurial > piecrust2
view piecrust/wsgiutil/__init__.py @ 455:cb3446be44b7
bake: Abort "render first" jobs if we start using other pages.
This prevents the baker from having one worker stuck on a very long job, like
rendering the index page of a blog with lots and lots of posts.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Wed, 08 Jul 2015 22:51:29 -0700 |
parents | d40b744a9d99 |
children | cc6f3dbe3048 |
line wrap: on
line source
from piecrust.serving.server import Server def get_app(root_dir, sub_cache_dir='prod', enable_debug_info=False): server = Server(root_dir, sub_cache_dir=sub_cache_dir, enable_debug_info=enable_debug_info) app = server.getWsgiApp() return app