Summer Sale! All accounts are 50% off this week.

jncalderonb's avatar

Laravel 10 testing after upgrade The process has been signaled with signal "11"

Hello everybody. For your context I upgraded a laravel project to 10 from 9 using shift. Very fast, and review all changes and it is well for me. But when I try to run the test it dont' work. Show the following message:

The process has been signaled with signal "11".
vendor/symfony/process/Process.php:434
    430▕             usleep(1000);
    431▕         }
    432▕ 
    433▕         if ($this->processInformation['signaled'] && $this->processInformation['termsig'] !== $this->latestSignal) {
  ➜ 434▕             throw new ProcessSignaledException($this);
    435▕         }
    436▕ 
    437▕         return $this->exitcode;
    438▕     }

      +15 vendor frames 
  16  artisan:37

I'm using docker, the API works well, I not have idea of this situation.

0 likes
2 replies
brisket's avatar

Can confirm having it on 9 too. So far.

1 like
jncalderonb's avatar

@brisket Hi I was solve it, but can be a issue particular (or mistake) in my project. I gonna share my case, maybe could be helpful.

The main issue was an extends. My application has the user model, but I created a new model called employees that extends from user. Because for my application the user & employee use the same table.

I removed the user extends on model employee, and resolve it. My application is working OK again.

Please or to participate in this conversation.