mirror of
				https://github.com/django/django.git
				synced 2025-10-31 09:41:08 +00:00 
			
		
		
		
	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:
		
				
					committed by
					
						 Tim Graham
						Tim Graham
					
				
			
			
				
	
			
			
			
						parent
						
							97c1931c4f
						
					
				
				
					commit
					7a6863c338
				
			| @@ -1,5 +1,4 @@ | ||||
| import sys | ||||
| import time | ||||
|  | ||||
| from django.apps import apps | ||||
| 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 | ||||
|         # connected to it. | ||||
|         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" | ||||
|                            % self.connection.ops.quote_name(test_database_name)) | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user