Remove usage of our custom MySQL backend.
Review Request #11342 — Created Dec. 21, 2020 and submitted
While Review Board 4.0 was early in development, we hit a case with
Django's MySQL backend where setting aBinaryField
to binary contents
would trigger a warning. This was fixed in Django 1.10.5, but applied to
Django 1.6 as well.We worked around this in a custom backend defined in Djblets that we
patched in in Review Board's settings. As we're no longer using any
versions of Django that are susceptible to this bug, we no longer need
to patch in the backend.This change removes that, allowing the original backend to be used.
Tested an install running on MySQL.
Unit tests pass.
Summary | ID |
---|---|
b80c86f9f10839c0e2f17e0baa98429ed1a29f1b |
Description | From | Last Updated |
---|---|---|
Before you submit: typo in description: defiend |
david |
- Description:
-
While Review Board 4.0 was early in development, we hit a case with
Django's MySQL backend where setting a BinaryField
to binary contentswould trigger a warning. This was fixed in Django 1.10.5, but applied to Django 1.6 as well. ~ We worked around this in a custom backend defiend in Djblets that we
~ We worked around this in a custom backend defined in Djblets that we
patched in in Review Board's settings. As we're no longer using any versions of Django that are susceptible to this bug, we no longer need to patch in the backend. This change removes that, allowing the original backend to be used.