I have a PHP CLI application that throws an exception after 300s, it looks like this:
Of course no documentation I could find would explain why, so I started digging myself by basically grepping around parts of the message. But nothing comes up!
For instance I would expect
grep -Ri ProcessTimedOutException .
run at the root of my repository to come up with something, but no...
I have also tried grepping other parts of the message to no avail... I've even tried to grep things that are gitignored just in case grep started to take that into account but of course it does not.
Is there some unexisting code that somehow is able to run? I feel like I'm chasing a ghost. If anyone has a suggestion...