#16 Fastapi-users의 OAuth2 사용시 생기는 MissingGreenlet 오류
·
프로그래밍/스팀 게임 퀴즈
fastapi-users는 기본 매뉴얼이 비동기로 되어있어 비동기로 보통 작성하곤 한다. 그러면 sqlalchemy의 MissingGreenlet 오류를 자주 만날 수 있게 된다. MissingGreenlet 오류는 sqlalchemy에서 아래와 같이 설명된다. A call to the async DBAPI was initiated outside the greenlet spawn context usually setup by the SQLAlchemy AsyncIO proxy classes. Usually this error happens when an IO was attempted in an unexpected place, using a calling pattern that does not directl..