Race condition check fails on JSON fields.
bparker98 opened this issue · 1 comments
bparker98 commented
The race condition check for updates fails when using a JSON field because the order that the fields are serialized in is non-derterministic by default.
The quick fix is to add sort_keys=True to the _to_redis() function for the JSON column type.
josiahcarlson commented
Fixed in 0.37.0. Thank you for the bug report and recommended fix.