##// END OF EJS Templates
core: deprecated http based callback deamon....
core: deprecated http based callback deamon. It was now broken for locking/branch protection, and celery is stable enough to be ready as main and only backend

File last commit:

r1250:2c57bb5b default
r1315:910dabad default
Show More
ext_json.py
14 lines | 294 B | text/x-python | PythonLexer
import json as stdlib_json
try:
# we keep simplejson for having dump functionality still
# orjson doesn't support it
import simplejson as sjson
except ImportError:
sjson = stdlib_json
try:
import orjson
import orjson as json
except ImportError:
json = stdlib_json