Daniel van Flymen
Daniel van Flymen
It's people like @jschneier that make OSS awesome. Thanks Josh ❤️
Hoping we can resolve this soon
@carltongibson this a major breaking issue so I'm just trying to bring it more attention. Tomorrow I'll go through the source and try make a contribution.
For anyone else with this issue, it doesn't exhibit when using the newer `RedisPubSubChannelLayer`. It's not in the Channels docs because it's still in beta. ```python CHANNEL_LAYERS = { "default":...
Agreed
Using it as a decorator is a lot cleaner: ```python from asgiref.sync import async_to_sync from email_normalize import Normalizer, Result @async_to_sync async def normalize(email: str) -> Result: normalizer = Normalizer() return...
If you're just trying to get your CI environment to build fast, (CircleCI, GitHub Actions, Travis etc.) you can take advantage of file system caching the `venv` by using the...
This unnecessarily eats away my GH credits. If you're building to GHCR, then I think it's a better solution to just trigger the deployment directly through the DO API using...
I figured it out, using `re_path("", get_asgi_application())` works, but `path("", get_asgi_application())` does not.