Alex Hedlund

Results 10 comments of Alex Hedlund

> Heads up, this might not work: [#2534 (comment)](https://github.com/nextauthjs/next-auth/issues/2534#issuecomment-989041887) While this might be true, I still think session-expiration is a security enhancement. I'm thinking about those not-so-tech-savvy people using public...

> Please refer to the MDN documentation I linked to. Modern browsers simply don't delete sessions even when closing the browser instance, so this will have no effect on security,...

> That looks interesting, thanks for the PR for this issue I subscribed to some time ago! :) > > I haven't done testing in VoiceOver but briefly checked Radix...

Was it fixed though? I still experience the same error with `django-stubs` 1.9.0 installed. Also, I couldn't find any related commit that would fix it.

A minimal urls.py which gives an error: ``` # Installed deps $ pip freeze asgiref==3.4.1 Django==3.2.7 django-stubs==1.9.0 django-stubs-ext==0.3.1 mypy==0.910 mypy-extensions==0.4.3 pytz==2021.1 sqlparse==0.4.2 toml==0.10.2 types-pytz==2021.1.2 types-PyYAML==5.4.10 typing-extensions==3.10.0.2 # urls.py from django.conf...

I haven't had time to look into the DRF nested router`s codebase much but I suppose it's a question of who's business it is to but the subroute into the...

Thanks for the response! In my use case the provisioned concurrency approach doesn't sound like the best choice. As a PoC I tried building a custom docker image with unpacked...

Any updates on this, @orionmiz? It's a huge blocker for me with upgrading to the app router.

My current workaround to get the app running: ``` class Flag(AbstractBaseFlag): class MockM2MRelation: through = None users = MockM2MRelation() groups = MockM2MRelation() # ... ```