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 20:24:16 -0400
commitcd7d6c8af7e9ecfd033c584ba50c782d6b82817c (patch)
tree9ce72bddf998f187d50b24ee37f61d8ed023c7ac /docs
parent0f02d71995530f29a2d3246083854fe19697c3a5 (diff)
[2.1.x] Fixed #29890 -- Fixed FileSystemStorage crash if concurrent saves try to create the same directory.
Regression in 632c4ffd9cb1da273303bcd8005fff216506c795. Backport of 98ef3829e96ebc73d4d446f92465e671ff520d2b from master.
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`).