Gavin Wahl

Results 16 issues of Gavin Wahl

- [x] Worker/Queue implentation boilerplate - [x] Comparison to celery (no funny business -- automatically importing your code, importing code by string, autodiscovery) - [x] mention not to use transaction.on_commit...

Yubico says that challenges should expire: https://developers.yubico.com/U2F/Libraries/Advanced_topics.html > #### Challenge Expiration > > It is good practice to treat challenges older than X minutes as expired.

Should you be able to include a ReverseUnique field in prefetch_related? Something like `Lang.objects.all().prefetch_related('articletranslation_set__article__active_translation')`. Currently this raises an error: ``` File "/srv/python-environments/eadfe1e8e3d19d09/local/lib/python2.7/site-packages/django/db/models/query.py", line 96, in __iter__ self._fetch_all() File "/srv/python-environments/eadfe1e8e3d19d09/local/lib/python2.7/site-packages/django/db/models/query.py", line...

When using sabridge from a test, the engine it uses keeps a connection pool. This means that when Django tries to remove the test database, there's still a connection open...

It looks like this addition is missing an overflow check: https://github.com/ChristophBerg/postgresql-unit/blob/cf6728e3773e1ff4a1c67f850aa44338405abafe/unit.h#L116 Multiplying values with very high exponents could result in undefined behavior.

bug

Right now, it seems like a program that calls begin_setup() after end_setup() would still compile. Would it be possible to get rid of begin_setup() and just the token as an...

I noticed that proxy_header defaults to 'X-Forwarded-Proto'. This is only safe if you're behind a proxy that sets X-Forwarded-Proto, otherwise an attacker could inject that header into a non-ssl request...

Given these models: ``` python class User(Model): pass class UserThing(Model): user = ForiegnKey(User, related_name='things') objects = PrefetchManager( # prefetches here... ) ``` I'd like to be able to be able...

The plot button does not show up and I get this error in the console: ``` Uncaught (in promise) TypeError: Cannot read properties of null (reading 'insertAdjacentElement') at Module.E9 (main.min.js:1:300215)...