Ver Fonte

Revert "Fixed #3586 made celery respect exception types when using serializers (#5074)" (#5085)

This reverts commit 9e457c0394689acdeb7f856488d3f2a9d0f4723b.
Asif Saif Uddin há 6 anos atrás
pai
commit
22d02981bf
3 ficheiros alterados com 10 adições e 40 exclusões
  1. 3 8
      celery/backends/base.py
  2. 1 9
      celery/utils/serialization.py
  3. 6 23
      t/unit/backends/test_base.py

+ 3 - 8
celery/backends/base.py

@@ -9,7 +9,6 @@
 from __future__ import absolute_import, unicode_literals
 from __future__ import absolute_import, unicode_literals
 
 
 import datetime
 import datetime
-import inspect
 import sys
 import sys
 import time
 import time
 from collections import namedtuple
 from collections import namedtuple
@@ -35,6 +34,7 @@ from celery.utils.collections import BufferMap
 from celery.utils.functional import LRUCache, arity_greater
 from celery.utils.functional import LRUCache, arity_greater
 from celery.utils.log import get_logger
 from celery.utils.log import get_logger
 from celery.utils.serialization import (create_exception_cls,
 from celery.utils.serialization import (create_exception_cls,
+                                        ensure_serializable,
                                         get_pickleable_exception,
                                         get_pickleable_exception,
                                         get_pickled_exception)
                                         get_pickled_exception)
 
 
@@ -236,14 +236,9 @@ class Backend(object):
         serializer = self.serializer if serializer is None else serializer
         serializer = self.serializer if serializer is None else serializer
         if serializer in EXCEPTION_ABLE_CODECS:
         if serializer in EXCEPTION_ABLE_CODECS:
             return get_pickleable_exception(exc)
             return get_pickleable_exception(exc)
-        # retrieve exception original module
-        exc_module = inspect.getmodule(type(exc))
-        if exc_module:
-            exc_module = exc_module.__name__
-
         return {'exc_type': type(exc).__name__,
         return {'exc_type': type(exc).__name__,
-                'exc_args': exc.args,
-                'exc_module': exc_module}
+                'exc_message': ensure_serializable(exc.args, self.encode),
+                'exc_module': type(exc).__module__}
 
 
     def exception_to_python(self, exc):
     def exception_to_python(self, exc):
         """Convert serialized exception to Python exception."""
         """Convert serialized exception to Python exception."""

+ 1 - 9
celery/utils/serialization.py

@@ -8,11 +8,11 @@ import sys
 from base64 import b64decode as base64decode
 from base64 import b64decode as base64decode
 from base64 import b64encode as base64encode
 from base64 import b64encode as base64encode
 from functools import partial
 from functools import partial
-from importlib import import_module
 from inspect import getmro
 from inspect import getmro
 from itertools import takewhile
 from itertools import takewhile
 
 
 from kombu.utils.encoding import bytes_to_str, str_to_bytes
 from kombu.utils.encoding import bytes_to_str, str_to_bytes
+
 from celery.five import (bytes_if_py2, items, python_2_unicode_compatible,
 from celery.five import (bytes_if_py2, items, python_2_unicode_compatible,
                          reraise, string_t)
                          reraise, string_t)
 
 
@@ -81,14 +81,6 @@ def itermro(cls, stop):
 
 
 def create_exception_cls(name, module, parent=None):
 def create_exception_cls(name, module, parent=None):
     """Dynamically create an exception class."""
     """Dynamically create an exception class."""
-    try:
-        mod = import_module(module)
-        exc_cls = getattr(mod, name, None)
-        if exc_cls and isinstance(exc_cls, type(BaseException)):
-            return exc_cls
-    except ImportError:
-        pass
-    # we could not find the exception, fallback and create a type.
     if not parent:
     if not parent:
         parent = Exception
         parent = Exception
     return subclass_exception(name, parent, module)
     return subclass_exception(name, parent, module)

+ 6 - 23
t/unit/backends/test_base.py

@@ -225,10 +225,6 @@ class DictBackend(BaseBackend):
         self._data.pop(group_id, None)
         self._data.pop(group_id, None)
 
 
 
 
-class CustomTestError(Exception):
-    pass
-
-
 class test_BaseBackend_dict:
 class test_BaseBackend_dict:
 
 
     def setup(self):
     def setup(self):
@@ -249,26 +245,13 @@ class test_BaseBackend_dict:
         self.b.delete_group('can-delete')
         self.b.delete_group('can-delete')
         assert 'can-delete' not in self.b._data
         assert 'can-delete' not in self.b._data
 
 
-    @pytest.mark.parametrize(("serializer"), (("pickle", "json")))
-    def test_prepare_builtin_exception(self, serializer):
-        x = DictBackend(self.app, serializer=serializer)
-        e = x.prepare_exception(ValueError('foo'))
-        if not isinstance(e, BaseException):
-            # not using pickle
-            assert 'exc_type' in e
-        e = x.exception_to_python(e)
-        assert e.__class__ is ValueError
-        assert e.args == ("foo", )
-
-    @pytest.mark.parametrize(("serializer"), (("pickle", "json")))
-    def test_prepare_custom_exception(self, serializer):
-        x = DictBackend(self.app, serializer=serializer)
-        e = x.prepare_exception(CustomTestError('foo'))
-        if not isinstance(e, BaseException):
-            assert 'exc_type' in e
+    def test_prepare_exception_json(self):
+        x = DictBackend(self.app, serializer='json')
+        e = x.prepare_exception(KeyError('foo'))
+        assert 'exc_type' in e
         e = x.exception_to_python(e)
         e = x.exception_to_python(e)
-        assert e.__class__ is CustomTestError
-        assert e.args == ("foo", )
+        assert e.__class__.__name__ == 'KeyError'
+        assert str(e).strip('u') == "'foo'"
 
 
     def test_save_group(self):
     def test_save_group(self):
         b = BaseBackend(self.app)
         b = BaseBackend(self.app)