Imcompatible with django-debug-toolbar 5.1.0+
A change dealing with sync/async in the get_show_toolbar function now requires an async_mode parameter.
System Information
- Operating system: Linux
- Strawberry version: 0.262.5
- Strawberry django version: 0.57.1
Additional Context
The fix is tricky to be compatible with older django-debug-toolbar version as the parameter did not exist and no **kwargs was there.
Possible solutions:
- inspect the function signature with python
- use the django-debug-toolbar version
Imcompatible with django-debug-toolbar 5.1.0+
A change dealing with sync/async in the
get_show_toolbarfunction now requires anasync_modeparameter.System Information
Additional Context
The fix is tricky to be compatible with older
django-debug-toolbarversion as the parameter did not exist and no**kwargswas there.Possible solutions: