From 5daee0f58987d84b161accc4fcc6fd278783af2a Mon Sep 17 00:00:00 2001 From: YoyoNow Date: Wed, 30 Jul 2025 11:36:40 +0200 Subject: [PATCH] Fix checkpointing of a dev server --- .../SpigotCore_Main/src/de/steamwar/core/CheckpointUtilsJ9.java | 1 + 1 file changed, 1 insertion(+) diff --git a/SpigotCore/SpigotCore_Main/src/de/steamwar/core/CheckpointUtilsJ9.java b/SpigotCore/SpigotCore_Main/src/de/steamwar/core/CheckpointUtilsJ9.java index d5919783..95edbaa5 100644 --- a/SpigotCore/SpigotCore_Main/src/de/steamwar/core/CheckpointUtilsJ9.java +++ b/SpigotCore/SpigotCore_Main/src/de/steamwar/core/CheckpointUtilsJ9.java @@ -112,6 +112,7 @@ class CheckpointUtilsJ9 { // Do the checkpoint path.toFile().mkdirs(); CRIUSupport criu = new CRIUSupport(path); + criu.setGhostFileLimit(10L * 1024L * 1024L); criu.setAutoDedup(true); criu.setFileLocks(true); criu.setShellJob(true);