summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSergey Fursov <geyser85@gmail.com>2016-09-26 01:25:38 +0300
committerTim Graham <timograham@gmail.com>2016-09-27 09:46:07 -0400
commit6709ea4ae91b906742506ac0c42a3a272991001f (patch)
tree39ba4c8a8481ecb99c10f292ec610d5352da8a2a /docs
parentb29c6c96c738bd7250a408b079dd8a4d4657849a (diff)
Fixed #27271 -- Fixed a crash in runserver logging.
Allowed ServerFormatter to handle simple string messages or messages with formatting arguments. The formatter will set the server_time variable on the log record if it's required by the format string but wasn't passed in extra parameters.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.10.2.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/releases/1.10.2.txt b/docs/releases/1.10.2.txt
index 222323c245..075eb947f9 100644
--- a/docs/releases/1.10.2.txt
+++ b/docs/releases/1.10.2.txt
@@ -22,3 +22,6 @@ Bugfixes
``SplitDateTimeWidget``, ``SelectDateWidget``, and ``SplitArrayWidget``
(:ticket:`27186`). Custom widgets affected by this issue may need to
implement a :meth:`~django.forms.Widget.value_omitted_from_data` method.
+
+* Fixed a crash in ``runserver`` logging during a "Broken pipe" error
+ (:ticket:`27271`).