diff --git a/django_elastic_migrations/indexes.py b/django_elastic_migrations/indexes.py index 1f98ac3..8642370 100644 --- a/django_elastic_migrations/indexes.py +++ b/django_elastic_migrations/indexes.py @@ -898,6 +898,9 @@ def save(self, using=None): using = es_client try: super(DEMIndex, self).save(using=using) + except TypeError as te: + if "unexpected keyword argument 'using'" in str(te): + super(DEMIndex, self).save() except ValueError as ex: if "Empty value" in ex.message and not self.get_active_version_index_name(): msg = (