matroskin8

Results 3 issues of matroskin8

Let's create file t.py ```python3 from time import sleep import retry def foo(): sleep(5) assert False retry.retry(interval=0, timeout=1)(foo)() ``` then ``` $ time python3 t.py Exception experienced when trying function...

**Describe the bug** If we define two objects of PotteryRedLock with same key (for example at different app instances), their `locked()` methods does not show states of other object **To...

bug

**Describe the bug** Readme claims `RedisSimpleQueue` is compatible with Python’s `SimpleQueue`, but RedisSimpleQueue().get(block=False` blocks forever **To Reproduce** Steps to reproduce the behavior: ``` from pottery import RedisSimpleQueue q = RedisSimpleQueue(redis=redis,...

bug