Add --disable_cache option to disable cache (#3245)

This commit is contained in:
Naoki Takezoe
2023-02-24 09:42:17 +09:00
committed by GitHub
parent 445329c07a
commit 6b8c4cf8d0
2 changed files with 49 additions and 26 deletions

View File

@@ -111,6 +111,9 @@ public class JettyLauncher {
case "--jetty_idle_timeout":
jettyIdleTimeout = dim[1];
break;
case "--disable_cache":
System.setProperty("gitbucket.disableCache", dim[1]);
break;
}
}
}