Leszek Piątek

Results 18 comments of Leszek Piątek

My solution going @mbi suggestions and using memory caching. It works only for captcha in last step of wizard. ``` python # -*- coding: utf-8 -*- from django.core.exceptions import ValidationError...

@mbi do You think we could merge it somehow to master? I see two solutions: - using the same field but adding optional validity_count with 1 default - using separate...

Hey @jlesage any progess on other architectures?

@jhorman I've created gists [here](https://gist.github.com/lechup/d886e89490b2f6c737d7). You can create Your own pr fork it and we could discuss code and it's improvements there.

I suggest to comment gist on [gist page](https://gist.github.com/lechup/d886e89490b2f6c737d7) not here. There are two version of it (my fork and [jhorman's version](https://gist.github.com/jhorman/e16ed695845fca683057)). He also explained [here](https://gist.github.com/lechup/d886e89490b2f6c737d7#comment-1253485) why exactly CTRL+C doesn't work...

Hm... Yeah. I only use cronjob in my projects (no enqueue_in/at) so iterating and by default remove old and add new jobs was the KISS'est sollution for me. For sure...

I think there should be a note how to intergrate it with django? Best solution so far I found here: http://stackoverflow.com/a/32033454/479931 Just use cron() instead of schedule(), each time You...

Hm... Ok. I've ended up with cronjobs management command instead of binding with AppConfig... I had some issues with multiprocess setup (all manage.py commands were touching jobs) ``` python #...

I think `_create_job` should have timeout kwarg, and we should get rid of: ``` python if timeout is not None: job.timeout = timeout ``` From `Scheduler.cron()` and other places, just...

@selwin I've created #124 , @WillNye maybe You can base on it?