diff options
author | Branden Cash <203336+ammmze@users.noreply.github.com> | 2025-02-02 16:40:43 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-02 18:40:43 -0500 |
commit | d57fe4395e77b0b6f5eabccf890498049fabbcfe (patch) | |
tree | f01d2e2dd711ce93f93382a278baacb928273ba8 /klippy/toolhead.py | |
parent | 0114d72a6cd8140d7dc80a590fc50e7073069edc (diff) | |
download | kutter-d57fe4395e77b0b6f5eabccf890498049fabbcfe.tar.gz kutter-d57fe4395e77b0b6f5eabccf890498049fabbcfe.tar.xz kutter-d57fe4395e77b0b6f5eabccf890498049fabbcfe.zip |
garbage_collection: freeze objects on klippy ready (#6794)
This significantly reduces the amount of data in the generation 2 garbage collection bucket from the initial startup of klipper.
Signed-off-by: Branden Cash <203336+ammmze@users.noreply.github.com>
Diffstat (limited to 'klippy/toolhead.py')
-rw-r--r-- | klippy/toolhead.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/klippy/toolhead.py b/klippy/toolhead.py index f1a9afda..e15f987e 100644 --- a/klippy/toolhead.py +++ b/klippy/toolhead.py @@ -290,7 +290,7 @@ class ToolHead: self._handle_shutdown) # Load some default modules modules = ["gcode_move", "homing", "idle_timeout", "statistics", - "manual_probe", "tuning_tower"] + "manual_probe", "tuning_tower", "garbage_collection"] for module_name in modules: self.printer.load_object(config, module_name) # Print time and flush tracking |