Alexander Schepanovski
Alexander Schepanovski
Are you willing to support this? Merge PRs if I provide them?
In Python 3.4 `True`, `False` and `None` are not names, but named constants.
More precisely, automatic event-based doesn't work properly for it. There are actually two different cases: 1. When SubModel instance is added, changed or deleted none of BaseModel queries invalidated. 2....
For now cacheops offers [2 imperfect strategies](https://github.com/Suor/django-cacheops#using-memory-limit) to handle that. They both have flaws. I create this issue to track the topic.
It seems you only get highlight for one of them. If you only use a couple of `` and `` then fenced blocks work, but html tags look like mere...
Very frustrating in compare when NOW and saved runs are displayed occasionally first or second. Also, on non-compare runs, why one would sort by runtime of unrelated tasks? Sorting by...
Basic support for progress reporting is calling a callback with `(done, total)` or `(done, total, filename)`. We are considering switch from paramiko, but since we are developing a user facing...
I tried with many task dedupe libs including yours and this doesn't work: ```python (task1.si(42) | task2.s(1)).delay() (task1.si(42) | task2.s(2)).delay() ``` I want `task1(42)` to be deduped and then both...
I get `TypeError missing a required argument: 'user_pk'`, where `user_pk` is the last argument of the task: ```python @shared_task(bind=True, base=Singleton, unique_on=["some_pk"], lock_expiry=15 * 60, acks_late=True) def do_stuff(self, some_pk, user_pk): #...
Looks like celery-singleton prevents retry from being scheduled. Can this be fixed?