summaryrefslogtreecommitdiff
path: root/docs/releases/2.2.1.txt
diff options
context:
space:
mode:
authorJacob Green <jacob@workflowy.com>2019-04-23 09:08:05 -0700
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2019-04-26 12:55:49 +0200
commited3c59097a01ed3f32f8a8bed95307fb5c181251 (patch)
treec972573ddf63b5779837c357d51412ced8a7c974 /docs/releases/2.2.1.txt
parentefeceba589974b95b35b2e25df86498c96315518 (diff)
Fixed #30361 -- Increased the default timeout of watchman client to 5 seconds and made it customizable.
Made the default timeout of watchman client customizable via DJANGO_WATCHMAN_TIMEOUT environment variable.
Diffstat (limited to 'docs/releases/2.2.1.txt')
-rw-r--r--docs/releases/2.2.1.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/2.2.1.txt b/docs/releases/2.2.1.txt
index b7b1f6112d..98f800d455 100644
--- a/docs/releases/2.2.1.txt
+++ b/docs/releases/2.2.1.txt
@@ -55,3 +55,7 @@ Bugfixes
:class:`~django.contrib.sessions.middleware.SessionMiddleware` subclasses,
rather than requiring :mod:`django.contrib.sessions` to be in
:setting:`INSTALLED_APPS` (:ticket:`30312`).
+
+* Increased the default timeout when using ``Watchman`` to 5 seconds to prevent
+ falling back to ``StatReloader`` on larger projects and made it customizable
+ via the ``DJANGO_WATCHMAN_TIMEOUT`` environment variable (:ticket:`30361`).