diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2022-03-04 11:21:05 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-04 11:21:05 +0100 |
| commit | 795da6306a048b18c0158496b0d49e8e4f197a32 (patch) | |
| tree | 70ff9940da0ab9ef4ea57b500bc93b80a71ed4b4 | |
| parent | a46bc327e70f81b66800780edf3830f6137a89e3 (diff) | |
Refs #31169 -- Prevented infinite loop in tests on failures.
Regression in ae91ecf6a1037fb67d14841b66ac19d4c2ccc4ac.
| -rw-r--r-- | django/db/backends/base/creation.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/django/db/backends/base/creation.py b/django/db/backends/base/creation.py index 15c2167be4..8a54f4061a 100644 --- a/django/db/backends/base/creation.py +++ b/django/db/backends/base/creation.py @@ -377,5 +377,4 @@ class BaseDatabaseCreation: # connection.settings_dict = settings_dict, new threads would connect # to the default database instead of the appropriate clone. self.connection.settings_dict.update(settings_dict) - self.mark_expected_failures_and_skips() self.connection.close() |
