mirror of https://github.com/django/django.git
Refs #31169 -- Prevented infinite loop in tests on failures.
Regression in ae91ecf6a1
.
This commit is contained in:
parent
a46bc327e7
commit
795da6306a
|
@ -377,5 +377,4 @@ class BaseDatabaseCreation:
|
||||||
# connection.settings_dict = settings_dict, new threads would connect
|
# connection.settings_dict = settings_dict, new threads would connect
|
||||||
# to the default database instead of the appropriate clone.
|
# to the default database instead of the appropriate clone.
|
||||||
self.connection.settings_dict.update(settings_dict)
|
self.connection.settings_dict.update(settings_dict)
|
||||||
self.mark_expected_failures_and_skips()
|
|
||||||
self.connection.close()
|
self.connection.close()
|
||||||
|
|
Loading…
Reference in New Issue