Przeglądaj źródła

Closed connection pool in clean up of test_allowed_database_copy_queries.

suraj 6 miesięcy temu
rodzic
commit
8dd3f7d538
1 zmienionych plików z 2 dodań i 0 usunięć
  1. 2 0
      tests/test_utils/tests.py

+ 2 - 0
tests/test_utils/tests.py

@@ -2186,6 +2186,8 @@ class AllowedDatabaseQueriesTests(SimpleTestCase):
         finally:
             new_connection.validate_thread_sharing()
             new_connection._close()
+            if hasattr(new_connection, "close_pool"):
+                new_connection.close_pool()
 
 
 class DatabaseAliasTests(SimpleTestCase):