Alex Sichkar
Alex Sichkar
Any news on this? It's not easy to debug related errors.
@samwillis thank you!
There is another related issue, with default interval (60 sec) and more than 120 seconds of run time rq-scheduler can't detect if another instance is already running
Hi, @panosangelopoulos. Sorry for late answer. My use case is to show custom label for resetting the filter. Imagine you have a filter for a field named `status` and you...
Hello. Is there anything on this issue?
Thanks. HRI is a small problem. For me, the most important thing is the redundant separator character. For now, I'm solving this by catching the ParseError exception and checking for...
I've noticed that the pull request has already been merged. Are you certain that this will work as expected within transactions? The code re-raises exceptions from the crud_flow() callback, which...
+1 Currently I use it like: ``` {% trans "Type your suggestion..." as ph %} {% render_field form.content placeholder=ph %} ``` But it's inconvenient. Django builtin tags support syntax like:...
Maybe just synchronize everything upon exiting the context manager block (by default)?
I mean re-sync not everything, but stuff changed in the context manager scope. Realword example: ```Python def merge_orders(orders): result = orders[0] others = orders[1:] for o in others: for item...