summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2022-08-04 09:16:38 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2022-08-04 09:17:30 +0200
commitab860d4e485ad0e983d320099c392eeb2d6e9585 (patch)
treeea339485b0e6430268cc7cac735f70ac15169c2d /docs
parent2ae024c7447c5dd4172741f0f2cefad654bc1555 (diff)
[4.1.x] Fixed #33891 -- Fixed test command crash when running in parallel using spawn.
Thanks Kevin Renskers for the report. Regression in 41c4cb253c137edf5a96b7408ea55d57d6e0602a. Backport of d4db417c8e6935222d198925dd4c5ac1ca737909 from main
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/4.1.1.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/4.1.1.txt b/docs/releases/4.1.1.txt
index 2d705f6a99..ec1b61617d 100644
--- a/docs/releases/4.1.1.txt
+++ b/docs/releases/4.1.1.txt
@@ -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`).