diff --git a/docs/settings.rst b/docs/settings.rst index f17c1dbc..5ff0752f 100644 --- a/docs/settings.rst +++ b/docs/settings.rst @@ -95,3 +95,16 @@ Using `django.settings` you may exert more fine-grained control over the behavio - Number - `3` - Specifies the maximum total time for a task to complete and return a result, including queue time. + +Threading +------------------- + +Django Health Check runs each check in `its own thread`_ by default. + +This behavior can be disabled with: + +.. code:: python + + HEALTH_CHECK = { + 'DISABLE_THREADING': True + }