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:41:12 +0100
commit47912d9f2b8f55044aef5b8ed9b006e8dd8ce976 (patch)
tree2eddbb35cfa0caa12c795f27cd20b2c42b545856 /docs
parent6d8c14621e2878ea2051ee56326c66969a1d18d0 (diff)
[1.7.x] Fixed #24007 -- Ensure apps registry's ready before unpickling models
This prevents AppRegistryNotReady errors when unpickling Django models from an external script. Backport of 108b8bf85 from master.
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`).