Go to the Ubuntu latest version in WSL:
sudo apt-get -y update
sudo apt-get -y install podman
curl -sSL install.astronomer.io | sudo bash -s
cd /home/
ls
mkdir astronomer
cd astronomer/
podman machine init
Go to the Ubuntu latest version in WSL:
sudo apt-get -y update
sudo apt-get -y install podman
curl -sSL install.astronomer.io | sudo bash -s
cd /home/
ls
mkdir astronomer
cd astronomer/
podman machine init
class _SessionRequestContextManager: | |
__slots__ = ("_coro", "_resp", "_session") | |
def __init__( | |
self, | |
coro: Coroutine["asyncio.Future[Any]", None, ClientResponse], | |
session: ClientSession, | |
) -> None: | |
self._coro = coro |
class DatabaseErrorWrapper: | |
""" | |
Context manager and decorator that reraises backend-specific database | |
exceptions using Django's common wrappers. | |
""" | |
def __init__(self, wrapper): | |
""" | |
wrapper is a database wrapper. |