summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2014-12-17 17:25:28 +0100
committerClaude Paroz <claude@2xlibre.net>2014-12-17 18:33:32 +0100
commit108b8bf852c76855ed98f5abe55db1da845598e7 (patch)
tree5d2edc8ea3e1daf32eb068e8647c23ae76973952 /docs
parentf3eed95175f8a8a365218a09fdc2dc864ff75d0c (diff)
Fixed #24007 -- Ensure apps registry's ready before unpickling models
This prevents AppRegistryNotReady errors when unpickling Django models from an external script.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.7.2.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/1.7.2.txt b/docs/releases/1.7.2.txt
index 88f3d3e1d8..47a56084d0 100644
--- a/docs/releases/1.7.2.txt
+++ b/docs/releases/1.7.2.txt
@@ -151,3 +151,7 @@ Bugfixes
(:ticket:`23975`).
* Made admin system checks run for custom ``AdminSite``\s (:ticket:`23497`).
+
+* Ensured the app registry is fully populated when unpickling models. When an
+ external script (like a queueing infrastructure) reloads pickled models, it
+ could crash with an ``AppRegistryNotReady`` exception (:ticket:`24007`).