Ignoring errors which may occur when updating the IM thread during testing
Publish PHP Package / docker (push) Successful in 5s
Details
Publish PHP Package / docker (push) Successful in 5s
Details
This commit is contained in:
parent
69267565b1
commit
7c3f74772e
|
@ -251,7 +251,15 @@ class Plan
|
||||||
|
|
||||||
while(!$this->isOver())
|
while(!$this->isOver())
|
||||||
{
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
//let's not exit the testing just because we couldn't update IM thread for some reason
|
||||||
$this->_updateMessengerThread(false);
|
$this->_updateMessengerThread(false);
|
||||||
|
}
|
||||||
|
catch(\Throwable $e)
|
||||||
|
{
|
||||||
|
err("Task #{$task->run_id} IM thread update error: {$e} *{$task->device}*...");
|
||||||
|
}
|
||||||
|
|
||||||
yield Amp\delay((int)($this->session->conf->sleep_time*1000));
|
yield Amp\delay((int)($this->session->conf->sleep_time*1000));
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue