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
From what I can tell, it may be related to having a TriggerVersionField in an abstract base class, which causes django to create all the version fields with the same creation_counter. The creation_counter is used in __hash__, which is called via set(_TRIGGERS) in the create_triggers function.
I've been having trouble writing a specific test for this, but I did manage to reproduce in another repo
The text was updated successfully, but these errors were encountered:
This may also be related to issue #78
From what I can tell, it may be related to having a
TriggerVersionField
in an abstract base class, which causes django to create all the version fields with the samecreation_counter
. Thecreation_counter
is used in__hash__
, which is called viaset(_TRIGGERS)
in thecreate_triggers
function.I've been having trouble writing a specific test for this, but I did manage to reproduce in another repo
The text was updated successfully, but these errors were encountered: