Browse Source

update the config with preconfig as non-defaults so they will be pickled

Jeremy Zafran 9 years ago
parent
commit
34921a188a
2 changed files with 10 additions and 2 deletions
  1. 1 0
      CONTRIBUTORS.txt
  2. 9 2
      celery/app/base.py

+ 1 - 0
CONTRIBUTORS.txt

@@ -197,3 +197,4 @@ Krzysztof Bujniewicz, 2015/10/21
 Sukrit Khera, 2015/10/26
 Dave Smith, 2015/10/27
 Dennis Brakhane, 2015/10/30
+Jeremy Zafran, 2016/05/17

+ 9 - 2
celery/app/base.py

@@ -452,14 +452,21 @@ class Celery(object):
         self.on_configure()
         if self._config_source:
             self.loader.config_from_object(self._config_source)
-        defaults = dict(deepcopy(DEFAULTS), **self._preconf)
         self.configured = True
         s = Settings({}, [self.prepare_config(self.loader.conf),
-                          defaults])
+                          deepcopy(DEFAULTS)])
         # load lazy config dict initializers.
         pending = self._pending_defaults
         while pending:
             s.add_defaults(maybe_evaluate(pending.popleft()()))
+
+        # preconf options must be explicitly set in the conf, and not
+        # as defaults or they will not be pickled with the app instance.
+        # This will cause errors when `CELERYD_FORCE_EXECV=True` as
+        # the workers will not have a BROKER_URL, CELERY_RESULT_BACKEND,
+        # or CELERY_IMPORTS set in the config.
+        if self._preconf:
+            s.update(self._preconf)
         return s
 
     def _after_fork(self, obj_):