Skip to content

Commit

Permalink
Fix celery module import in comments. (#1474)
Browse files Browse the repository at this point in the history
  • Loading branch information
bkyryliuk authored Oct 29, 2016
1 parent ab083b8 commit 5561e6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion caravel/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@
# Example:
class CeleryConfig(object):
BROKER_URL = 'sqla+sqlite:///celerydb.sqlite'
CELERY_IMPORTS = ('caravel.tasks', )
CELERY_IMPORTS = ('caravel.sql_lab', )
CELERY_RESULT_BACKEND = 'db+sqlite:///celery_results.sqlite'
CELERY_ANNOTATIONS = {'tasks.add': {'rate_limit': '10/s'}}
CELERY_CONFIG = CeleryConfig
Expand Down

0 comments on commit 5561e6b

Please sign in to comment.