1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #33891 -- Fixed test command crash when running in parallel using spawn.

Thanks Kevin Renskers for the report.

Regression in 41c4cb253c.
This commit is contained in:
Mariusz Felisiak
2022-08-04 09:16:38 +02:00
committed by GitHub
parent 0638b4e23d
commit d4db417c8e
2 changed files with 10 additions and 8 deletions

View File

@@ -14,3 +14,7 @@ Bugfixes
* Fixed a regression in Django 4.1 that caused a crash of admin's autocomplete
widgets when translations are deactivated (:ticket:`33888`).
* Fixed a regression in Django 4.1 that caused a crash of the ``test``
management command when running in parallel and ``multiprocessing`` start
method is ``spawn`` (:ticket:`33891`).