man4red
man4red
Here is working patch example. (not sure about Y value limits, but -90 - 90 works fine) Whlie debug - I can see X values greater than 30-40 etc... and...
@mpalourdio , thx :+1:
@mpalourdio, I think, that: ``` css #zend-developer-toolbar { ... -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; ... } ``` would be preferable because of cross browser compatibility
There's a Token Bucket approach as for example source https://habr.com/ru/articles/494090/ ```python from celery import Celery from kombu import Queue from queue import Empty from functools import wraps app = Celery('hello',...
> This doesn't work at scale, you end up in a busy loop between your queue (Redis/RabbitMQ) and Celery workers. The countdown=1 won't help much if you have a large...
I know this is old but hope it would help the key is to set redbeat_redis_url to sentinel dsn like for example, your sentinel dsn might look like this: `sentinel://:redis@redis-sentinel:26379/0;sentinel://:redis@redis-sentinel2:26379/0;sentinel://:redis@redis-sentinel3:26379/0`...
> @man4red hey! any updates? not from me, sorry. I fixed it the way I saw it, but I’m not sure what the next move is. I might be wrong,...
> @man4red can you fix the lint errors? It would be great if we had some tests to prevent regressions again in the future, but I won't block merging on...
as of now replace it manually ```python # celeryconfig.py redbeat_redis_url = redis_settings.sentinel_dsn.replace("sentinel://", "redis-sentinel://") ```