0

I have a PHP CLI application that throws an exception after 300s, it looks like this:

weird exception 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...

grep -Ri ProcessTimedOutException .

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...

djfm
  • 2,317
  • 1
  • 18
  • 34
  • What does `examples/needelp` argument represent? – domagoj Jan 05 '19 at 14:44
  • You are being led astray by something that is wrong with your grep. Not sure what. But if you look under vendor/symfony/process/Exception then you will find the ProcessTimedOutException class. The exception itself is pretty clear. You have something looping or waiting on another process and eventually timing out. – Cerad Jan 05 '19 at 15:06
  • ls vendor/symfony : console contracts polyfill-ctype polyfill-mbstring – djfm Jan 05 '19 at 17:05
  • I do not see how this is a duplicate as I'm not using a composer command – djfm Jan 08 '19 at 19:41

0 Answers0