summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorFrançois Freitag <mail@franek.fr>2017-04-18 11:15:42 -0700
committerClaude Paroz <claude@2xlibre.net>2017-04-20 17:43:39 +0200
commit56746fb21f6bbf93fe96f4e3908040111439c9c3 (patch)
tree9bc008d23c692b1d86939bc1517774301f0de707 /docs
parent5e2bbcd70c9b0213bfda31b90e4b1c35815880e9 (diff)
[1.11.x] Fixed #28091 -- Re-raised original exception when closing cursor cleanup fails
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.11.1.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/1.11.1.txt b/docs/releases/1.11.1.txt
index 1f475ee736..e2f49a3c03 100644
--- a/docs/releases/1.11.1.txt
+++ b/docs/releases/1.11.1.txt
@@ -42,3 +42,7 @@ Bugfixes
``ModelAdmin.radio_fields`` with ``admin.HORIZONTAL`` (:ticket:`28059`).
* Fixed crash in ``BaseGeometryWidget.subwidgets()`` (:ticket:`28039`).
+
+* Re-raised the original exception when ``cursor.execute()`` fails and the
+ cleanup code ``cursor.close()`` fails as well, instead of raising the cleanup
+ code failure (:ticket:28091).