Force client optimization for potential faster speed up

-server forces aggressive optimization in Java which reduces startup
speed
This commit is contained in:
games647
2022-02-11 16:01:38 +01:00
parent 9a9a75fbb5
commit 6140160a5e

View File

@ -87,7 +87,7 @@ public class LoginIT {
return systemProperties.entrySet().stream()
.map(entry -> "-D" + entry.getKey() + '=' + entry.getValue())
.collect(Collectors.joining(" "));
.collect(Collectors.joining(" ")) + " -client";
}
@Before