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

[1.6.x] Fixed #21486 -- Prevented settings config in signal connection

This was particularly problematic in the chain get_wsgi_application
-> db.connections import -> signal connection -> settings configuration.
Thanks Jon Dufresne for the report.
Backport of 42fef29446 from master.
This commit is contained in:
Claude Paroz
2013-11-23 18:18:42 +01:00
parent 8750296918
commit 432de54611
2 changed files with 3 additions and 1 deletions

View File

@@ -35,3 +35,5 @@ Bug fixes
promised: Support of multiple locale names separated by commas. It's still
possible to specify multiplle locales in one run by suing the option
multiple times (#21488, #17181).
* Fixed a regression that unnecessarily triggered settings configuration when
importing ``get_wsgi_application`` (#21486).