Skip to content

Commit

Permalink
- Fix celery initialization when using GeoNode ad a depenency
Browse files Browse the repository at this point in the history
  • Loading branch information
afabiani committed Jun 28, 2018
1 parent 7c6e5e6 commit 2ccb0ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion geonode/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
def run_setup_hooks(*args, **kwargs):
from django.conf import settings
from .celery_app import app as celery_app
if 'geonode.celery_app' not in settings.INSTALLED_APPS:
if celery_app not in settings.INSTALLED_APPS:
settings.INSTALLED_APPS += (celery_app )


Expand Down

0 comments on commit 2ccb0ed

Please sign in to comment.