##// END OF EJS Templates
revert name change broken in 28305020a4ed127e8aca2f1a10e30d902efb6238
revert name change broken in 28305020a4ed127e8aca2f1a10e30d902efb6238

File last commit:

r776:f6c613fb beta
r3675:7a5b11c2 beta
Show More
__init__.py
16 lines | 614 B | text/x-python | PythonLexer
"""
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
"""
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