You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ka...@apache.org on 2020/06/30 10:22:02 UTC

[airflow] 06/06: Add docs about reload_on_plugin_change opiton (#9575)

This is an automated email from the ASF dual-hosted git repository.

kaxilnaik pushed a commit to branch v1-10-test
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit 38dcbdcf204fb9fc542ea4a9c13823a70a1ae8ee
Author: Kamil BreguĊ‚a <mi...@users.noreply.github.com>
AuthorDate: Mon Jun 29 23:24:24 2020 +0200

    Add docs about reload_on_plugin_change opiton (#9575)
    
    
    (cherry picked from commit 656c48da9c1d2ea13b928bd6b968ccd86bc7a95d)
---
 docs/plugins.rst | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/docs/plugins.rst b/docs/plugins.rst
index bfe08aa..88559e0 100644
--- a/docs/plugins.rst
+++ b/docs/plugins.rst
@@ -318,3 +318,12 @@ This will create a hook, and an operator accessible at:
 
 - ``airflow.hooks.my_namespace.MyHook``
 - ``airflow.operators.my_namespace.MyOperator``
+
+Automatic reloading webserver
+-----------------------------
+
+To enable automatic reloading of the webserver, when changes in a directory with plugins has been detected,
+you should set ``reload_on_plugin_change`` option in ``[webserver]`` section to ``True``.
+
+.. note::
+    For more information on setting the configuration, see :doc:`/howto/set-config`