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
In _wrap_save from TriggerVersionField the arguments force_insert, force_update and using are passed to save() as positional arguments.
Causing the warning to trigger.
IMHO there are two options:
Drop them and just pass them on via kwargs. This breaks for users passing them in as positional arguments. Does anyone actually do this?
Use *args (and later drop them when Django Concurrency only supports Django 6 or later), in case anyone is passing in positional arguments.
Any opinions or perhaps another solution?
The text was updated successfully, but these errors were encountered:
In _wrap_save from TriggerVersionField the arguments force_insert, force_update and using are passed to save() as positional arguments.
Causing the warning to trigger.
IMHO there are two options:
Any opinions or perhaps another solution?
The text was updated successfully, but these errors were encountered: