https://forge.softwareheritage.org/source/swh-scheduler.git
Revision bde27a9e4262373486ed8c3e48bfbfe5171a9432 authored by Nicolas Dandrimont on 25 October 2022, 13:46:26 UTC, committed by Nicolas Dandrimont on 25 October 2022, 13:51:01 UTC
Recent celery versions generate serialized messages with mime types incompatible
with older versions when using msgpack
1 parent aeb870a
Raw File
Tip revision: bde27a9e4262373486ed8c3e48bfbfe5171a9432 authored by Nicolas Dandrimont on 25 October 2022, 13:46:26 UTC
Use json instead of msgpack for serializers
Tip revision: bde27a9
setup.cfg
[flake8]
# E203: whitespaces before ':' <https://github.com/psf/black/issues/315>
# E231: missing whitespace after ','
# E501: line too long, use B950 warning from flake8-bugbear instead
# W503: line break before binary operator <https://github.com/psf/black/issues/52>
select = C,E,F,W,B950
ignore = E203,E231,E501,W503
max-line-length = 88
back to top