Explorar el Código

Yaml is not exception-able

Ask Solem hace 11 años
padre
commit
1d604406ef
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      celery/backends/base.py

+ 1 - 1
celery/backends/base.py

@@ -44,7 +44,7 @@ from celery.utils.serialization import (
 
 __all__ = ['BaseBackend', 'KeyValueStoreBackend', 'DisabledBackend']
 
-EXCEPTION_ABLE_CODECS = frozenset(['pickle', 'yaml'])
+EXCEPTION_ABLE_CODECS = frozenset(['pickle'])
 PY3 = sys.version_info >= (3, 0)
 
 logger = get_logger(__name__)