Hey :wave: We've got a consistent issue in our CI ...
# community-support
p
Hey 👋 We've got a consistent issue in our CI where daemon has disappeared
Copy code
The message received from the daemon indicates that the daemon has disappeared.
Build request sent: Build{id=8ed55a4a-070d-4e5e-be45-03ee4033a697, currentDir=..}
Attempting to read last messages from the daemon log...
Daemon pid: 50
  log file: ../.gradle/daemon/8.5/daemon-50.out.log
----- Last  20 lines from daemon log file - daemon-50.out.log -----
Tracing back in the code, I spot it comes down to be an
EOFException
(end of file or end of stream exception), but don't know what could cause this issue. Any idea?
v
Most often if daemon disappeared it either means it crashed, or way more often the OS killed the daemon process. For example if you are running on Linux, the RAM becomes short, and the Kernel decides to kill the daemon. This should be findable in the OS logs.
👆 2