Fixed #27690 -- Removed time.sleep(1) before dropping the test database.
Uncertain if this is needed, but no failures have appeared so far.
This commit is contained in:
parent
97c1931c4f
commit
7a6863c338
|
@ -1,5 +1,4 @@
|
||||||
import sys
|
import sys
|
||||||
import time
|
|
||||||
|
|
||||||
from django.apps import apps
|
from django.apps import apps
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
|
@ -277,8 +276,6 @@ class BaseDatabaseCreation(object):
|
||||||
# to do so, because it's not allowed to delete a database while being
|
# to do so, because it's not allowed to delete a database while being
|
||||||
# connected to it.
|
# connected to it.
|
||||||
with self.connection._nodb_connection.cursor() as cursor:
|
with self.connection._nodb_connection.cursor() as cursor:
|
||||||
# Wait to avoid "database is being accessed by other users" errors.
|
|
||||||
time.sleep(1)
|
|
||||||
cursor.execute("DROP DATABASE %s"
|
cursor.execute("DROP DATABASE %s"
|
||||||
% self.connection.ops.quote_name(test_database_name))
|
% self.connection.ops.quote_name(test_database_name))
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue