Commit 49c0342e by Eric Fischer Committed by GitHub

Merge pull request #15167 from edx/efischer/update_celeryutils

Make use of ChordableDjangoBackend
parents fe9cce59 992a6ed0
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -35,7 +35,7 @@ CREATE TABLE `django_migrations` (
`name` varchar(255) NOT NULL,
`applied` datetime(6) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=266 DEFAULT CHARSET=utf8;
) ENGINE=InnoDB AUTO_INCREMENT=275 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
......
......@@ -232,15 +232,7 @@ if RELEASE_LINE == "master":
'course_author': 'http://edx.readthedocs.io/projects/edx-partner-course-staff',
}
# TODO: TNL-6546: Remove this waffle and flag code.
from django.db.utils import ProgrammingError
from waffle.models import Flag
try:
flag, created = Flag.objects.get_or_create(name='unified_course_view')
WAFFLE_OVERRIDE = True
except ProgrammingError:
# during initial reset_db, the table for the flag doesn't yet exist.
pass
WAFFLE_OVERRIDE = True
#####################################################################
# Lastly, see if the developer has any local overrides.
......
......@@ -16,7 +16,7 @@ dealer==2.0.4
defusedxml==0.4.1
django-babel-underscore==0.5.1
markey==0.8 # From django-babel-underscore
django-celery==3.1.16
django-celery==3.2.1
django-config-models==0.1.3
django-countries==4.0
django-extensions==1.5.9
......@@ -43,7 +43,7 @@ django-waffle==0.11.1
djangorestframework-jwt==1.8.0
djangorestframework-oauth==1.1.0
edx-ccx-keys==0.2.1
edx-celeryutils==0.1.5
edx-celeryutils==0.2.2
edx-drf-extensions==1.2.2
edx-i18n-tools==0.3.7
edx-lint==0.4.3
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment