You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the Django ORM will shoot out a SynchronousOnlyOperation if used within a IDOM component. This is caused by Django's current limitation surrounding mixed sync-async contexts.
Current Situation
Currently, the Django ORM will shoot out a
SynchronousOnlyOperation
if used within a IDOM component. This is caused by Django's current limitation surrounding mixed sync-async contexts.Proposed Actions
Choose one of the following
DJANGO_ALLOW_ASYNC_UNSAFE
when within a component rendering context.database_sync_to_async
that can perform ORM queriesThe text was updated successfully, but these errors were encountered: