Aleksander
Aleksander
Same here ``` code: 'BABEL_VERSION_UNSUPPORTED', version: '7.0.0-beta.3', range: '^7.0.0-0' ```
@felicianotech It would be nice to have `image: circleci/python:3.7.1-gdal` Currently I've made workaround with: ``` - run: name: Install dependencies command: | sudo apt update sudo apt install -y gdal-bin...
+1 I also has this problem I have some tasks on worker_B that has pickle serialization ``` In [10]: i=app.control.inspect() In [11]: i.ping() Out[11]: {'worker_A@backend': {'ok': 'pong'}, 'worker_B@backend': {'ok': 'pong'},...
@svenklemm Why hypertables actually need table to be LOGGED ? Are we using WAL somehow?
This still happens with celery==5.2.3 and redis 6.2 as broker. ``` python @shared_task() def test_task(arg, *args, **kwargs): print(arg) sleep(3) return arg @shared_task() def fail(): print("Failing task") sleep(1) raise ValueError() def...
Yes, but using helper in over 1000 tests makes them less readable, and also slower, because it would convert OrderedDicts even when they are equal. I tried to override `pytest_assertrepr_compare`...
I had similar problem with celery 4.4.7 and Redis broker. When I run nested chains and chords, payload that is sent to redis is getting too big and causes `redis.exceptions.ConnectionError:...
@debodirno @rozuur @navinpai Is this project still maintained? I wanted to use it instead of s3cmd, because s3cmd don't work on windows without giving any error, and s4cmd seems working,...