From e736d77f6d60adc6d674d36ce81bda1ab1f2f860 Mon Sep 17 00:00:00 2001 From: Mario Castellanos Date: Mon, 25 Oct 2021 14:19:11 -0500 Subject: [PATCH] Ignore checks to avoid breaking mariadb xpand compatibility --- src/django_mysql/apps.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/django_mysql/apps.py b/src/django_mysql/apps.py index d3c7e748..49ceed50 100644 --- a/src/django_mysql/apps.py +++ b/src/django_mysql/apps.py @@ -11,7 +11,8 @@ class MySQLConfig(AppConfig): def ready(self): self.perform_monkey_patches() self.add_lookups() - register_checks() + # Ignore checks as check_variables is incompatible with MariDB xpand engine + #register_checks() def perform_monkey_patches(self): from django_mysql import monkey_patches