Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: async-in-sync example should use the portal #361

Closed
cofin opened this issue Jan 22, 2025 · 0 comments · Fixed by #418
Closed

fix: async-in-sync example should use the portal #361

cofin opened this issue Jan 22, 2025 · 0 comments · Fixed by #418
Assignees

Comments

@cofin
Copy link
Member

cofin commented Jan 22, 2025

The flask async documentation is missing the "portal" call for the async from sync call.

async def create_a_user(session: AsyncSession) -> None: 
    user = User(name="I'm Experimental")
    session.add(user)
    await session.commit() 

@app.route("/test", methods=["POST"])
def test_route() -> tuple[dict[str, str], int]:
    session = extension.get_async_session() 
    _ = extension.portal_provider.portal.call(create_user, session)
    return {"status": "success"}, 200
@cofin cofin self-assigned this Mar 10, 2025
cofin added a commit that referenced this issue Mar 10, 2025
Update the Flask example that uses the portal class.

Fixes #361
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
1 participant