From 4f3d2e9bd61c647238932360de2be6f361a186bd Mon Sep 17 00:00:00 2001 From: Guillaume Poirier-Morency Date: Wed, 13 Apr 2022 15:12:33 -0700 Subject: [PATCH] Relocate max_shown_tasks and max_graph_nodes documentation under [scheduler] --- doc/configuration.rst | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/doc/configuration.rst b/doc/configuration.rst index 95d1767b28..9a9103c9ee 100644 --- a/doc/configuration.rst +++ b/doc/configuration.rst @@ -168,24 +168,6 @@ log_level logging_conf_file Location of the logging configuration file. -max_shown_tasks - .. versionadded:: 1.0.20 - - The maximum number of tasks returned in a task_list api call. This - will restrict the number of tasks shown in task lists in the - visualiser. Small values can alleviate frozen browsers when there are - too many done tasks. This defaults to 100000 (one hundred thousand). - -max_graph_nodes - .. versionadded:: 2.0.0 - - The maximum number of nodes returned by a dep_graph or - inverse_dep_graph api call. Small values can greatly speed up graph - display in the visualiser by limiting the number of nodes shown. Some - of the nodes that are not sent to the visualiser will still show up as - dependencies of nodes that were sent. These nodes are given TRUNCATED - status. - no_configure_logging If true, logging is not configured. Defaults to false. @@ -789,6 +771,24 @@ disable_window scheduler forgets about disables that have occurred longer ago than this amount of time. Defaults to 3600 (1 hour). +max_shown_tasks + .. versionadded:: 1.0.20 + + The maximum number of tasks returned in a task_list api call. This + will restrict the number of tasks shown in task lists in the + visualiser. Small values can alleviate frozen browsers when there are + too many done tasks. This defaults to 100000 (one hundred thousand). + +max_graph_nodes + .. versionadded:: 2.0.0 + + The maximum number of nodes returned by a dep_graph or + inverse_dep_graph api call. Small values can greatly speed up graph + display in the visualiser by limiting the number of nodes shown. Some + of the nodes that are not sent to the visualiser will still show up as + dependencies of nodes that were sent. These nodes are given TRUNCATED + status. + record_task_history If true, stores task history in a database. Defaults to false.