##// END OF EJS Templates
old style: fix the contextbar location
old style: fix the contextbar location

File last commit:

r4116:ffd45b18 rhodecode-2.2.5-gpl
r4141:fe4e9a7d rhodecode-2.2.5-gpl
Show More
__init__.py
19 lines | 640 B | text/x-python | PythonLexer
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 # -*- coding: utf-8 -*-
Celery is configured by the .ini files and run from paster now...
r776 """
Automatically sets the environment variable `CELERY_LOADER` to
`celerypylons.loader:PylonsLoader`. This ensures the loader is
specified when accessing the rest of this package, and allows celery
to be installed in a webapp just by importing celerypylons::
import celerypylons
"""
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116
Celery is configured by the .ini files and run from paster now...
r776 import os
import warnings
CELERYPYLONS_LOADER = 'rhodecode.lib.celerypylons.loader.PylonsLoader'
if os.environ.get('CELERY_LOADER', CELERYPYLONS_LOADER) != CELERYPYLONS_LOADER:
warnings.warn("'CELERY_LOADER' environment variable will be overridden by celery-pylons.")
os.environ['CELERY_LOADER'] = CELERYPYLONS_LOADER