Browse Source

Tests passing

Ask Solem 10 years ago
parent
commit
6e71620c59
1 changed files with 4 additions and 0 deletions
  1. 4 0
      celery/app/base.py

+ 4 - 0
celery/app/base.py

@@ -692,6 +692,10 @@ class Celery(object):
             self._load_config()
         return self._conf
 
+    @conf.setter
+    def conf(self, d):  # noqa
+        self._conf = d
+
     @cached_property
     def control(self):
         return instantiate(self.control_cls, app=self)