summaryrefslogtreecommitdiff
path: root/scripts/queue_loader.py
AgeCommit message (Collapse)Author
2013-02-28scripts: sweeping change to postpone log string formattingmartinko
2009-06-07pkgloader module to be able to coexist with 2.xMarko Kreen
Use scheme that pygtk uses to support parallel installations: import pkgloader pkgloader.require('skytools', '3.0') import skytools This will allow keeping old module installed by default and new version is used only by request.
2009-06-01python/pgq: relaxed event handlingMarko Kreen
.tag_done() call is no more required. Events are by default in 'done' state. In 2.x events were in 'retry' state by default, which was very bad idea in retrospect. Changing them to 'untagged' and still requiring tag_done() does not seem too good either. Original reasoning was to detect and survive errors in scripts, but the result was only confusion to everybody. So instead of assuming that script may be buggy, now we assume that script knows what it does. And only by explicit action can they be tagged as retry.
2009-06-01python scripts: Move template config to docstring.Asko Oja
* Template config is now in docstring to make to more easy to keep up-to-date. * dbscript: --ini option to show template config.
2009-02-17Combined queue_loaderMarko Kreen
Merge table_dispatcher, cube_dispatcher and bulk_loader together