Radomirs Cirskis
Radomirs Cirskis
Is there any wait to throttle the message processing rate based on the specified rate limit instead of rejecting the incoming messages? Let's say there is a burst of messages...
Is this issue soled? I have set up 60sec scheduler refresh and task interval is one hour (```interval=3600```), but the task gets scheduled every minute and sometimes even twice a...
I can confirm that ```repeat``` also gets ignored.
I was trying to isolate the issue. I couldn't reproduce the issue. It might be something wrong with **flask-rq2** integration with the scheduer....
It appears that decorator **schedule** create a scheduled task every time the flask app gets restarted. And you work in the development environment with reloading it happens often. I wonder...
Digging around I found that the working approach is to remove all scheduler jobs before setting up (https://stackoverflow.com/a/32033454/235362) schedule. With flask-rq2 it would be: ```python from . import tasks, rq...
**UPDATE!** **NB!** it turned out that if result_ttl needs to be provided. Otherwise, it won't get rescheduled and will get removed from the list of the scheduled tasks. So to...
@marksweb it's done so that customization can be done in one place - the explorer/base.html. Otherwise, you would have to override all 4 templates: query_list.html, query.html, play.html and qyertlog_list.html. Well...
Actually, it was possible to refactor and dry a bit the templates and move the sql_explorer_navlinks block to the base.html. Assuming that "django.template.context_processors.request" isn't used I populate the context in...
@kuriimutaiyaki, I managed to get it working on Windows (it had never been tested on it): ```cmd: AppData\Local\Programs\Python\Python37\python.exe -m pip install -v --user memrise-scraper REM That created also 2 executables...