Remove the verbose:gc flag from the build
Motivation: When a faulty never-ending test keeps producing a lot of garbage doing nothing but generating CPU load, our CI fails to detect the stalled build, because it determines the 'inactivity time' from console activity and GC keeps producing console output. Modifications: Remove the -verbose:gc flag from pom.xml Result: Stalled builds are terminated by our CI server.
This commit is contained in:
parent
ed4a89082b
commit
47a50aaa2a
2
pom.xml
2
pom.xml
@ -590,7 +590,7 @@
|
|||||||
</argLine.common>
|
</argLine.common>
|
||||||
<!-- Default to ALPN. Then classpath is used to refine selection. See forcenpn profile to force NPN -->
|
<!-- Default to ALPN. Then classpath is used to refine selection. See forcenpn profile to force NPN -->
|
||||||
<argLine.bootcp>-Xbootclasspath/p:${jetty.alpn.path}</argLine.bootcp>
|
<argLine.bootcp>-Xbootclasspath/p:${jetty.alpn.path}</argLine.bootcp>
|
||||||
<argLine.leak>-verbose:gc</argLine.leak> <!-- Overridden when 'leak' profile is active -->
|
<argLine.leak>-D_</argLine.leak> <!-- Overridden when 'leak' profile is active -->
|
||||||
<argLine.coverage>-D_</argLine.coverage> <!-- Overridden when 'coverage' profile is active -->
|
<argLine.coverage>-D_</argLine.coverage> <!-- Overridden when 'coverage' profile is active -->
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user