summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2018-10-31 19:25:53 -0400
committerTim Graham <timograham@gmail.com>2018-10-31 19:28:11 -0400
commit98ef3829e96ebc73d4d446f92465e671ff520d2b (patch)
tree2e0591e7d56a0dda5b85853e52795ea9f41746a9 /docs
parent3d4d0a25b299a97314582156a0d63d939662d310 (diff)
Fixed #29890 -- Fixed FileSystemStorage crash if concurrent saves try to create the same directory.
Regression in 632c4ffd9cb1da273303bcd8005fff216506c795.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/2.1.3.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/2.1.3.txt b/docs/releases/2.1.3.txt
index 72ec3e4a32..f4f33803bb 100644
--- a/docs/releases/2.1.3.txt
+++ b/docs/releases/2.1.3.txt
@@ -20,3 +20,7 @@ Bugfixes
* Fixed a regression where cached foreign keys that use ``to_field`` were
incorrectly cleared in ``Model.save()`` (:ticket:`29896`).
+
+* Fixed a regression in Django 2.0 where ``FileSystemStorage`` crashes with
+ ``FileExistsError`` if concurrent saves try to create the same directory
+ (:ticket:`29890`).