michaelsembwever commented on code in PR #4625:
URL: https://github.com/apache/cassandra/pull/4625#discussion_r2823731438
##########
.jenkins/Jenkinsfile:
##########
@@ -434,6 +434,10 @@ def test(command, cell) {
if (!cell.step.startsWith("microbench")) {
junit testResults:
"test/**/TEST-*.xml,test/**/cqlshlib*.xml,test/**/nosetests*.xml",
testDataPublishers: [[$class: 'StabilityTestDataPublisher']]
}
+ // check if we had Linux OOM killer active within the test
container which could kill forked JUnit JVM processes
+ sh """
+ cat /sys/fs/cgroup/docker/memory.events || true
+ """
sh """
Review Comment:
nit: would this be a bit cleaner ?
```suggestion
sh """
echo "docker memory/oomkiller debug:"
cat /sys/fs/cgroup/docker/memory.events || true
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]