amphp / parallel

An advanced parallelization library for PHP, enabling efficient multitasking, optimizing resource use, and application responsiveness through multiple CPU threads.
MIT License
775 stars 64 forks source link

How to launch multiple blocking processes #112

Closed iNilo closed 1 year ago

iNilo commented 4 years ago

Terribly sorry for making an issue, but I've been stuck for a while.

I'm in the need to launch multiple blocking php scripts in a concurrent fashion. Its the same script 20 x times.

I've looked at https://github.com/amphp/parallel/blob/master/examples/process.php

and its child:

https://github.com/amphp/parallel/blob/master/examples/blocking-process.php

But I'm struggling to make it launch 20 children ( with different data )

I've got something like this:

$promises = [];
for($x = 0; $x <= 10; $x++)
{
    $process = new Process(__DIR__ . "/amp-runner.php");
    $process->start();
    $promises[] = $process->send(x);
}
$all_replies = Promise\wait(Promise\all($promises));
var_dump($all_replies);

But I can't get it to work.

kelunik commented 4 years ago

@bergmab @iNilo This seems to be caused by a too small socket accept backlog size. I've explicitly set the backlog size to 128 now and added retries to the process-runner.php, so it should work now, please test with the latest master branch.

bergmab commented 4 years ago

Using a pool with 128 workers works fine now. 256 is not:

PHP Warning: stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-4f90788a1c91bafb00b6.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 65

This probably another issue. Would you like me to open a new one for this?

kelunik commented 4 years ago

No, it's exactly that issue, but should have been solved by the retries, or so I thought. It's strange you didn't get that warning before if you get it now.

bergmab commented 4 years ago

That’s the first time I see this error. Do you need anything from me to help resolve that issue?

kelunik commented 4 years ago

Not at the moment, no, will try something later.

iNilo commented 4 years ago

@kelunik please advise 😢

Loading composer repositories with package information
Updating dependencies (including require-dev)
Package operations: 12 installs, 0 updates, 0 removals
  - Installing psr/log (1.1.3): Loading from cache
  - Installing monolog/monolog (1.25.3): Loading from cache
  - Installing amphp/serialization (v1.0.0): Loading from cache
  - Installing amphp/amp (v2.4.3): Loading from cache
  - Installing amphp/byte-stream (v1.7.3): Loading from cache
  - Installing amphp/process (v1.1.0): Loading from cache
  - Installing amphp/sync (v1.3.0): Loading from cache
  - Installing amphp/parser (v1.0.0): Loading from cache
  - Installing amphp/parallel (dev-master 86e1498): Cloning 86e1498e96
  - Installing catfan/medoo (v1.7.10): Loading from cache
  - Installing kint-php/kint (3.3): Loading from cache

Your latest fix is there (checked the code)

php play.php

PHP Fatal error:  Uncaught Amp\TimeoutException: Operation timed out in /home/centos/web/public_html/cron/vendor/amphp/amp/lib/functions.php:270
Stack trace:
#0 /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/NativeDriver.php(122): Amp\Promise\{closure}()
#1 /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php(138): Amp\Loop\NativeDriver->dispatch()
#2 /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php(72): Amp\Loop\Driver->tick()
#3 /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop.php(95): Amp\Loop\Driver->run()
#4 /home/centos/web/public_html/cron/working_example/play.php(32): Amp\Loop::run()
#5 {main}

Next Amp\Parallel\Context\ContextException: Starting the process timed out in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/ProcessHub.php:131
Stack trace:
#0 [internal function]: Amp\Parallel\Context\Internal\ProcessHub->Amp\Parallel\Context\Internal\{closure}()
#1 /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php(1 in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Process.php on line 202

Fatal error: Uncaught Amp\TimeoutException: Operation timed out in /home/centos/web/public_html/cron/vendor/amphp/amp/lib/functions.php:270
Stack trace:
#0 /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/NativeDriver.php(122): Amp\Promise\{closure}()
#1 /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php(138): Amp\Loop\NativeDriver->dispatch()
#2 /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php(72): Amp\Loop\Driver->tick()
#3 /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop.php(95): Amp\Loop\Driver->run()
#4 /home/centos/web/public_html/cron/working_example/play.php(32): Amp\Loop::run()
#5 {main}

Next Amp\Parallel\Context\ContextException: Starting the process timed out in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Process.php on line 202

Amp\Parallel\Context\ContextException: Starting the process failed in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Process.php on line 202

Call Stack:
    0.0007     396504   1. {main}() /home/centos/web/public_html/cron/working_example/play.php:0
    0.0071    1124984   2. Amp\Loop::run() /home/centos/web/public_html/cron/working_example/play.php:32
    0.0073    1136040   3. Amp\Loop\NativeDriver->run() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop.php:95
   16.5497    2536136   4. Amp\Loop\NativeDriver->tick() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php:72
   16.5498    2529216   5. Amp\Loop\NativeDriver->error() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php:133
kelunik commented 4 years ago

@bergmab Please retry with the latest master.

@iNilo Please try it with an error handler like that:

<?php

require __DIR__ . '/../vendor/autoload.php';

use function Amp\ParallelFunctions\parallelMap;
use function Amp\Promise\wait;

$pool = new Amp\Parallel\Worker\DefaultPool((int) $argv[1]);

$array = \array_fill(0, (int) $argv[2], 1);

set_error_handler(function (...$e) {
    unset($e[4]);
    var_dump($e);
});

// Parallel function execution is nice, but it's even better being able to use closures instead of having to write a
// function that has to be autoloadable.

try {
    \var_dump(wait(parallelMap($array, function ($time) {
        \sleep($time); // a blocking function call, might also do blocking I/O here

        return $time * $time;
    }, $pool)));
} catch (Amp\MultiReasonException $e) {
    throw @reset($e->getReasons());
}
bergmab commented 4 years ago

Looks like the latest code is hanging with pool-size = 256. I can only see results from the first worker during the first 10 minutes of run but after that the only thing I see is the CPU usage increasing until I stop it.

Note: it's still working nicely with pool-size = 128.

kelunik commented 4 years ago

Please test with the latest master again and also check whether your open files limit is high enough. Please also check whether your error log contains any errors.

bergmab commented 4 years ago

Latest master commit, same behavior.

bergmab commented 4 years ago

Just did some couple more tests with different pool-size value and with 200 I face these errors after 40K successful jobs:

  127 => Amp\Parallel\Context\ContextException^ {#584076
    #message: "Starting the process failed"
    #code: 0
    #file: "/home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Process.php"
    #line: 204
    -previous: Amp\Parallel\Context\ContextException^ {#576288 …6}  2153 => Amp\Parallel\Worker\WorkerException^ {#571695
    #message: "The worker crashed"
    #code: 0
    #file: "/home/bergmab/parallel/vendor/amphp/parallel/lib/Worker/TaskWorker.php"
    #line: 111
    trace: { …93}
  }
kelunik commented 4 years ago

Please configure error_log in your php.ini and see whether any errors / warnings get logged there.

bergmab commented 4 years ago

Here's the requested log:

[24-Apr-2020 08:13:11 America/Toronto] PHP Fatal error:  Could not read key from parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[24-Apr-2020 08:13:11 America/Toronto] PHP Fatal error:  Could not read key from parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[24-Apr-2020 08:13:11 America/Toronto] PHP Fatal error:  Could not read key from parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[24-Apr-2020 08:13:11 America/Toronto] PHP Fatal error:  Could not read key from parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[24-Apr-2020 08:13:11 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:11 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:11 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:11 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:11 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:11 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:11 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:11 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:11 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:11 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:11 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:21 America/Toronto] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-16ba42d847b1772739d3.sock (Resource temporarily unavailable) in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[24-Apr-2020 08:13:21 America/Toronto] PHP Fatal error:  Could not connect to IPC socket in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
[24-Apr-2020 08:13:22 America/Toronto] PHP Fatal error:  Could not send result to parent; be sure to shutdown the child before ending the parent in /home/bergmab/parallel/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 120
iNilo commented 4 years ago

Did the following:

composer.json

{
    "prefer-stable" : true,
    "minimum-stability": "dev",
    "require": {
        "catfan/medoo": "^1.7",
        "kint-php/kint": "^3.3",
        "amphp/process": "^1.1",
        "amphp/parallel": "dev-master"
    }
}

php composer.phar update

Loading composer repositories with package information
Updating dependencies (including require-dev)
Package operations: 0 installs, 1 update, 0 removals
  - Updating amphp/parallel dev-master (6fdd90d => 2c98777):  Checking out 2c987776c0
Writing lock file
Generating autoload files

php.ini

error_log = /var/log/php.error.log

php play.php

<?php
chdir(__DIR__);
require_once '..' . DIRECTORY_SEPARATOR . 'vendor' . DIRECTORY_SEPARATOR . 'autoload.php';

error_reporting(E_ALL);
ini_set('display_errors', 1);

use Amp\ByteStream;
use Amp\Delayed;
use Amp\Loop;
use Amp\Parallel\Context\Process;
use Amp\Parallel\Worker;
use Amp\Promise;
use function Amp\call;

$results = [];
$endings = [];
\Amp\Loop::run(static function() use (&$results, &$endings) {
    $promises = [];
    for($x = 0; $x <= 50; $x++)
    {
        $promises[] = \Amp\call(function() use (&$results, &$endings, $x): \Generator
        {
            $process = new Amp\Parallel\Context\Process( __DIR__ . "/blocking-process.php");
            yield $process->start();
            yield $process->send($x);
            $results[] = yield $process->receive();
            $endings[] = yield $process->join();
        });
    }
    yield \Amp\Promise\all($promises);
});
d($results);
d($endings);

Seems to be working! 🦸

bergmab commented 4 years ago

Still not on my side. Note that I am using parallel-functions, not directly parallel.

iNilo commented 4 years ago

@kelunik @bergmab nvm, bumping play.php to 150

Fatal error: Uncaught Amp\TimeoutException: Operation timed out in /home/centos/web/public_html/cron/vendor/amphp/amp/lib/functions.php:270
Stack trace:
#0 /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/NativeDriver.php(122): Amp\Promise\{closure}()
#1 /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php(138): Amp\Loop\NativeDriver->dispatch()
#2 /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php(72): Amp\Loop\Driver->tick()
#3 /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop.php(95): Amp\Loop\Driver->run()
#4 /home/centos/web/public_html/cron/working_example/play.php(32): Amp\Loop::run()
#5 {main}

Next Amp\Parallel\Context\ContextException: Starting the process timed out in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Process.php on line 202

Amp\Parallel\Context\ContextException: Starting the process failed in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Process.php on line 202

Call Stack:
    0.0008     396296   1. {main}() /home/centos/web/public_html/cron/working_example/play.php:0
    0.0168    1124776   2. Amp\Loop::run() /home/centos/web/public_html/cron/working_example/play.php:32
    0.0175    1135832   3. Amp\Loop\NativeDriver->run() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop.php:95
   95.0249    3730264   4. Amp\Loop\NativeDriver->tick() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php:72
   95.0380    3281320   5. Amp\Loop\NativeDriver->error() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php:133

php.error.log


[27-Apr-2020 15:42:37 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:38 UTC] PHP Stack trace:
[27-Apr-2020 15:42:37 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:38 UTC] PHP Stack trace:
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:38 UTC] PHP Stack trace:
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:38 UTC] PHP Stack trace:
[27-Apr-2020 15:42:38 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:38 UTC] PHP Stack trace:
[27-Apr-2020 15:42:38 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:38 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:38 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:38 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:38 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:38 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:38 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:38 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:38 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:38 UTC] PHP Stack trace:
[27-Apr-2020 15:42:38 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:38 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:38 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:38 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:38 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:38 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:38 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:38 UTC] PHP Stack trace:
[27-Apr-2020 15:42:38 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:38 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:38 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:38 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:38 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:38 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:38 UTC] PHP Stack trace:
[27-Apr-2020 15:42:38 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:38 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:38 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:38 UTC] PHP Stack trace:
[27-Apr-2020 15:42:38 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:38 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:38 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:38 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:38 UTC] PHP Stack trace:
[27-Apr-2020 15:42:38 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:38 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:38 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:38 UTC] PHP Stack trace:
[27-Apr-2020 15:42:38 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:38 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:38 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:38 UTC] PHP Stack trace:
[27-Apr-2020 15:42:38 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:38 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:38 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:38 UTC] PHP Stack trace:
[27-Apr-2020 15:42:38 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:38 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:38 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:38 UTC] PHP Stack trace:
[27-Apr-2020 15:42:38 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:38 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:38 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:38 UTC] PHP Stack trace:
[27-Apr-2020 15:42:38 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:38 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:38 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:38 UTC] PHP Stack trace:
[27-Apr-2020 15:42:38 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:38 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:38 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:38 UTC] PHP Stack trace:
[27-Apr-2020 15:42:38 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:38 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:38 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:38 UTC] PHP Stack trace:
[27-Apr-2020 15:42:38 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:38 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:38 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:38 UTC] PHP Stack trace:
[27-Apr-2020 15:42:38 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:38 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:38 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:38 UTC] PHP Stack trace:
[27-Apr-2020 15:42:38 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:38 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:38 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:38 UTC] PHP Stack trace:
[27-Apr-2020 15:42:38 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:38 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:38 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:38 UTC] PHP Stack trace:
[27-Apr-2020 15:42:38 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:38 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:38 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:38 UTC] PHP Stack trace:
[27-Apr-2020 15:42:38 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:38 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:38 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:38 UTC] PHP Stack trace:
[27-Apr-2020 15:42:38 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:38 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:38 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:38 UTC] PHP Stack trace:
[27-Apr-2020 15:42:38 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:38 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:38 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:38 UTC] PHP Stack trace:
[27-Apr-2020 15:42:38 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:38 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:38 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:38 UTC] PHP Stack trace:
[27-Apr-2020 15:42:38 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:38 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:38 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:38 UTC] PHP Stack trace:
[27-Apr-2020 15:42:38 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:38 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:38 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:37 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:38 UTC] PHP Stack trace:
[27-Apr-2020 15:42:38 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:38 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:38 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:38 UTC] PHP Stack trace:
[27-Apr-2020 15:42:38 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:38 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:38 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:38 UTC] PHP Stack trace:
[27-Apr-2020 15:42:38 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:38 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:38 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:38 UTC] PHP Stack trace:
[27-Apr-2020 15:42:38 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:38 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:38 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:38 UTC] PHP Stack trace:
[27-Apr-2020 15:42:38 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:38 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:38 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:38 UTC] PHP Stack trace:
[27-Apr-2020 15:42:38 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:38 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:38 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:38 UTC] PHP Stack trace:
[27-Apr-2020 15:42:38 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:38 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:38 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:38 UTC] PHP Stack trace:
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:38 UTC] PHP Stack trace:
[27-Apr-2020 15:42:38 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:38 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:38 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:38 UTC] PHP Stack trace:
[27-Apr-2020 15:42:38 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:38 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:38 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:37 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:38 UTC] PHP Stack trace:
[27-Apr-2020 15:42:37 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:38 UTC] PHP Stack trace:
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:38 UTC] PHP Stack trace:
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:38 UTC] PHP Stack trace:
[27-Apr-2020 15:42:38 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:38 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:38 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:38 UTC] PHP Stack trace:
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:38 UTC] PHP Stack trace:
[27-Apr-2020 15:42:38 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:38 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:38 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:38 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:39 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:39 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:39 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:39 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:39 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:39 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:39 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:39 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:39 UTC] PHP Stack trace:
[27-Apr-2020 15:42:39 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:39 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:39 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:39 UTC] PHP Stack trace:
[27-Apr-2020 15:42:39 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:39 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:39 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:39 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:39 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:39 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:39 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:39 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:39 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:39 UTC] PHP Stack trace:
[27-Apr-2020 15:42:39 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:39 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:39 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:39 UTC] PHP Stack trace:
[27-Apr-2020 15:42:39 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:39 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:39 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:37 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:39 UTC] PHP Stack trace:
[27-Apr-2020 15:42:39 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:39 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:39 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:37 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:39 UTC] PHP Stack trace:
[27-Apr-2020 15:42:37 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:39 UTC] PHP Stack trace:
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:39 UTC] PHP Stack trace:
[27-Apr-2020 15:42:39 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:39 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:39 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:37 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:39 UTC] PHP Stack trace:
[27-Apr-2020 15:42:37 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:39 UTC] PHP Stack trace:
[27-Apr-2020 15:42:39 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:39 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:39 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:39 UTC] PHP Stack trace:
[27-Apr-2020 15:42:39 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:39 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:39 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:37 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:39 UTC] PHP Stack trace:
[27-Apr-2020 15:42:39 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:39 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:39 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:39 UTC] PHP Stack trace:
[27-Apr-2020 15:42:39 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:39 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:39 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:39 UTC] PHP Stack trace:
[27-Apr-2020 15:42:39 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:39 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:39 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:39 UTC] PHP Stack trace:
[27-Apr-2020 15:42:39 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:39 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:39 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:39 UTC] PHP Stack trace:
[27-Apr-2020 15:42:39 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:39 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:39 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:39 UTC] PHP Stack trace:
[27-Apr-2020 15:42:39 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:39 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:39 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:39 UTC] PHP Stack trace:
[27-Apr-2020 15:42:39 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:39 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:39 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:39 UTC] PHP Stack trace:
[27-Apr-2020 15:42:39 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:39 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:39 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:37 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:39 UTC] PHP Stack trace:
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:39 UTC] PHP Stack trace:
[27-Apr-2020 15:42:39 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:39 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:39 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:39 UTC] PHP Stack trace:
[27-Apr-2020 15:42:39 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:39 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:39 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:39 UTC] PHP Stack trace:
[27-Apr-2020 15:42:39 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:39 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:39 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:39 UTC] PHP Stack trace:
[27-Apr-2020 15:42:39 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:39 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:39 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:39 UTC] PHP Stack trace:
[27-Apr-2020 15:42:36 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:39 UTC] PHP Stack trace:
[27-Apr-2020 15:42:39 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:39 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:39 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:39 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:39 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:39 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:39 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:39 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:39 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:39 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:39 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:39 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:39 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:39 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:39 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:37 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:39 UTC] PHP Stack trace:
[27-Apr-2020 15:42:39 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:39 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:39 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:39 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:39 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:39 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:39 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:40 UTC] PHP Stack trace:
[27-Apr-2020 15:42:40 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:40 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:40 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:40 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:40 UTC] PHP Stack trace:
[27-Apr-2020 15:42:40 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:40 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:40 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:40 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:40 UTC] PHP Stack trace:
[27-Apr-2020 15:42:40 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:40 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:41 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:40 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:41 UTC] PHP Stack trace:
[27-Apr-2020 15:42:40 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:41 UTC] PHP Stack trace:
[27-Apr-2020 15:42:40 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:41 UTC] PHP Stack trace:
[27-Apr-2020 15:42:41 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:41 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:41 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:41 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:41 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:41 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:41 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:41 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:41 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:40 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:41 UTC] PHP Stack trace:
[27-Apr-2020 15:42:41 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:41 UTC] PHP Stack trace:
[27-Apr-2020 15:42:41 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:41 UTC] PHP Stack trace:
[27-Apr-2020 15:42:41 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:41 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:41 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:40 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:41 UTC] PHP Stack trace:
[27-Apr-2020 15:42:41 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:41 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:41 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:41 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:41 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:41 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:40 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:41 UTC] PHP Stack trace:
[27-Apr-2020 15:42:41 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:41 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:41 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:41 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:41 UTC] PHP Stack trace:
[27-Apr-2020 15:42:41 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:41 UTC] PHP Stack trace:
[27-Apr-2020 15:42:41 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:41 UTC] PHP Stack trace:
[27-Apr-2020 15:42:41 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:41 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:41 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:41 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:41 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:41 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:41 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:41 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:41 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:41 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:41 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:41 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:41 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:41 UTC] PHP Stack trace:
[27-Apr-2020 15:42:41 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:41 UTC] PHP Stack trace:
[27-Apr-2020 15:42:41 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:41 UTC] PHP Stack trace:
[27-Apr-2020 15:42:41 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:41 UTC] PHP Stack trace:
[27-Apr-2020 15:42:41 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:41 UTC] PHP Stack trace:
[27-Apr-2020 15:42:41 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:41 UTC] PHP Stack trace:
[27-Apr-2020 15:42:41 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:41 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:41 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:41 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:41 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:41 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:41 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:41 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:41 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:41 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:41 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:41 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:41 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:41 UTC] PHP Stack trace:
[27-Apr-2020 15:42:41 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:41 UTC] PHP Stack trace:
[27-Apr-2020 15:42:41 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:41 UTC] PHP Stack trace:
[27-Apr-2020 15:42:41 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:41 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:41 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:41 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:41 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:41 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:41 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:41 UTC] PHP Stack trace:
[27-Apr-2020 15:42:41 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:41 UTC] PHP Stack trace:
[27-Apr-2020 15:42:41 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:41 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:41 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:41 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:41 UTC] PHP Stack trace:
[27-Apr-2020 15:42:41 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:41 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:41 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:41 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:41 UTC] PHP Stack trace:
[27-Apr-2020 15:42:41 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:41 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:41 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:41 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:41 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:41 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:41 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:41 UTC] PHP Stack trace:
[27-Apr-2020 15:42:41 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:41 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:41 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:41 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:41 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:41 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:41 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:41 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:41 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:41 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:41 UTC] PHP Stack trace:
[27-Apr-2020 15:42:41 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:41 UTC] PHP Stack trace:
[27-Apr-2020 15:42:41 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:41 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:41 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:41 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:41 UTC] PHP Stack trace:
[27-Apr-2020 15:42:41 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:41 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:41 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:41 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:41 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:41 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:41 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:41 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:41 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:41 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:42 UTC] PHP Stack trace:
[27-Apr-2020 15:42:42 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:42 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:42 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:42 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:42 UTC] PHP Stack trace:
[27-Apr-2020 15:42:42 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:42 UTC] PHP Stack trace:
[27-Apr-2020 15:42:42 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:42 UTC] PHP Stack trace:
[27-Apr-2020 15:42:42 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:42 UTC] PHP Stack trace:
[27-Apr-2020 15:42:42 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:42 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:42 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:42 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:42 UTC] PHP Stack trace:
[27-Apr-2020 15:42:42 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:42 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:42 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:42 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:42 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:42 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:42 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:42 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:42 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:42 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:42 UTC] PHP Stack trace:
[27-Apr-2020 15:42:42 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:42 UTC] PHP Stack trace:
[27-Apr-2020 15:42:42 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:42 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:42 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:42 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:42 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:42 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:42 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:42 UTC] PHP Stack trace:
[27-Apr-2020 15:42:42 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:42 UTC] PHP Stack trace:
[27-Apr-2020 15:42:42 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:42 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:42 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:42 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:42 UTC] PHP Stack trace:
[27-Apr-2020 15:42:42 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:42 UTC] PHP Stack trace:
[27-Apr-2020 15:42:42 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:42 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:42 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:42 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:42 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:42 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:42 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:42 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:42 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:42 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:42 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:42 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:42 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:42 UTC] PHP Stack trace:
[27-Apr-2020 15:42:42 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:42 UTC] PHP Stack trace:
[27-Apr-2020 15:42:42 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:42 UTC] PHP Stack trace:
[27-Apr-2020 15:42:42 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:42 UTC] PHP Stack trace:
[27-Apr-2020 15:42:42 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:42 UTC] PHP Stack trace:
[27-Apr-2020 15:42:42 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:42 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:42 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:42 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:43 UTC] PHP Stack trace:
[27-Apr-2020 15:42:43 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:43 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:43 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:43 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:43 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:43 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:43 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:43 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:43 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:43 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:43 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:43 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:43 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:43 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:43 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:42 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:43 UTC] PHP Stack trace:
[27-Apr-2020 15:42:42 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:43 UTC] PHP Stack trace:
[27-Apr-2020 15:42:42 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:43 UTC] PHP Stack trace:
[27-Apr-2020 15:42:43 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:43 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:43 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:42 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:43 UTC] PHP Stack trace:
[27-Apr-2020 15:42:43 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:43 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:43 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:43 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:43 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:43 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:42 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:43 UTC] PHP Stack trace:
[27-Apr-2020 15:42:43 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:43 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:43 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:43 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:43 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:43 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:42 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:43 UTC] PHP Stack trace:
[27-Apr-2020 15:42:42 UTC] PHP Fatal error:  Could not read key from parent in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 59
[27-Apr-2020 15:42:43 UTC] PHP Stack trace:
[27-Apr-2020 15:42:43 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:43 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:43 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:42:43 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:42:43 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:42:43 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:59
[27-Apr-2020 15:45:11 UTC] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-70bbc56a596525570750.sock (Resource temporarily unavailable) in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[27-Apr-2020 15:45:11 UTC] PHP Stack trace:
[27-Apr-2020 15:45:11 UTC] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-70bbc56a596525570750.sock (Resource temporarily unavailable) in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[27-Apr-2020 15:45:11 UTC] PHP Stack trace:
[27-Apr-2020 15:45:11 UTC] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-70bbc56a596525570750.sock (Resource temporarily unavailable) in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[27-Apr-2020 15:45:11 UTC] PHP Stack trace:
[27-Apr-2020 15:45:11 UTC] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-70bbc56a596525570750.sock (Resource temporarily unavailable) in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[27-Apr-2020 15:45:11 UTC] PHP Stack trace:
[27-Apr-2020 15:45:11 UTC] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-70bbc56a596525570750.sock (Resource temporarily unavailable) in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[27-Apr-2020 15:45:11 UTC] PHP Stack trace:
[27-Apr-2020 15:45:11 UTC] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-70bbc56a596525570750.sock (Resource temporarily unavailable) in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[27-Apr-2020 15:45:11 UTC] PHP Stack trace:
[27-Apr-2020 15:45:11 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:45:11 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:45:11 UTC] PHP   3. stream_socket_client() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:67
[27-Apr-2020 15:45:11 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:45:11 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:45:11 UTC] PHP   3. stream_socket_client() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:67
[27-Apr-2020 15:45:11 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:45:11 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:45:11 UTC] PHP   3. stream_socket_client() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:67
[27-Apr-2020 15:45:11 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:45:11 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:45:11 UTC] PHP   3. stream_socket_client() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:67
[27-Apr-2020 15:45:11 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:45:11 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:45:11 UTC] PHP   3. stream_socket_client() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:67
[27-Apr-2020 15:45:11 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:45:11 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:45:11 UTC] PHP   3. stream_socket_client() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:67
[27-Apr-2020 15:45:12 UTC] PHP Fatal error:  Could not connect to IPC socket in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[27-Apr-2020 15:45:12 UTC] PHP Stack trace:
[27-Apr-2020 15:45:12 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:45:12 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:45:12 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:69
[27-Apr-2020 15:45:11 UTC] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-70bbc56a596525570750.sock (Resource temporarily unavailable) in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[27-Apr-2020 15:45:12 UTC] PHP Stack trace:
[27-Apr-2020 15:45:11 UTC] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-70bbc56a596525570750.sock (Resource temporarily unavailable) in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[27-Apr-2020 15:45:12 UTC] PHP Stack trace:
[27-Apr-2020 15:45:12 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:45:12 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:45:12 UTC] PHP   3. stream_socket_client() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:67
[27-Apr-2020 15:45:12 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:45:12 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:45:12 UTC] PHP   3. stream_socket_client() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:67
[27-Apr-2020 15:45:12 UTC] PHP Fatal error:  Could not connect to IPC socket in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[27-Apr-2020 15:45:12 UTC] PHP Stack trace:
[27-Apr-2020 15:45:12 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:45:12 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:45:12 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:69
[27-Apr-2020 15:45:12 UTC] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-70bbc56a596525570750.sock (Resource temporarily unavailable) in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[27-Apr-2020 15:45:12 UTC] PHP Stack trace:
[27-Apr-2020 15:45:12 UTC] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-70bbc56a596525570750.sock (Resource temporarily unavailable) in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[27-Apr-2020 15:45:12 UTC] PHP Stack trace:
[27-Apr-2020 15:45:12 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:45:12 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:45:12 UTC] PHP   3. stream_socket_client() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:67
[27-Apr-2020 15:45:12 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:45:12 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:45:12 UTC] PHP   3. stream_socket_client() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:67
[27-Apr-2020 15:45:11 UTC] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-70bbc56a596525570750.sock (Resource temporarily unavailable) in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[27-Apr-2020 15:45:12 UTC] PHP Stack trace:
[27-Apr-2020 15:45:12 UTC] PHP Fatal error:  Could not connect to IPC socket in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[27-Apr-2020 15:45:12 UTC] PHP Stack trace:
[27-Apr-2020 15:45:12 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:45:12 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:45:12 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:69
[27-Apr-2020 15:45:12 UTC] PHP Fatal error:  Could not connect to IPC socket in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[27-Apr-2020 15:45:12 UTC] PHP Stack trace:
[27-Apr-2020 15:45:12 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:45:12 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:45:12 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:69
[27-Apr-2020 15:45:12 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:45:12 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:45:12 UTC] PHP   3. stream_socket_client() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:67
[27-Apr-2020 15:45:12 UTC] PHP Fatal error:  Could not connect to IPC socket in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[27-Apr-2020 15:45:12 UTC] PHP Stack trace:
[27-Apr-2020 15:45:12 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:45:12 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:45:12 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:69
[27-Apr-2020 15:45:12 UTC] PHP Fatal error:  Could not connect to IPC socket in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[27-Apr-2020 15:45:12 UTC] PHP Stack trace:
[27-Apr-2020 15:45:12 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:45:12 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:45:12 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:69
[27-Apr-2020 15:45:12 UTC] PHP Fatal error:  Could not connect to IPC socket in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[27-Apr-2020 15:45:12 UTC] PHP Stack trace:
[27-Apr-2020 15:45:12 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:45:12 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:45:12 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:69
[27-Apr-2020 15:45:11 UTC] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-70bbc56a596525570750.sock (Resource temporarily unavailable) in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[27-Apr-2020 15:45:12 UTC] PHP Stack trace:
[27-Apr-2020 15:45:12 UTC] PHP Fatal error:  Could not connect to IPC socket in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[27-Apr-2020 15:45:12 UTC] PHP Stack trace:
[27-Apr-2020 15:45:12 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:45:12 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:45:12 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:69
[27-Apr-2020 15:45:12 UTC] PHP Fatal error:  Could not connect to IPC socket in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[27-Apr-2020 15:45:12 UTC] PHP Stack trace:
[27-Apr-2020 15:45:12 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:45:12 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:45:12 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:69
[27-Apr-2020 15:45:12 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:45:12 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:45:12 UTC] PHP   3. stream_socket_client() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:67
[27-Apr-2020 15:45:12 UTC] PHP Fatal error:  Could not connect to IPC socket in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[27-Apr-2020 15:45:12 UTC] PHP Stack trace:
[27-Apr-2020 15:45:12 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:45:12 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:45:12 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:69
[27-Apr-2020 15:45:12 UTC] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-70bbc56a596525570750.sock (Resource temporarily unavailable) in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[27-Apr-2020 15:45:12 UTC] PHP Stack trace:
[27-Apr-2020 15:45:12 UTC] PHP Fatal error:  Could not connect to IPC socket in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[27-Apr-2020 15:45:12 UTC] PHP Stack trace:
[27-Apr-2020 15:45:12 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:45:12 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:45:12 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:69
[27-Apr-2020 15:45:12 UTC] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-70bbc56a596525570750.sock (Resource temporarily unavailable) in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[27-Apr-2020 15:45:12 UTC] PHP Stack trace:
[27-Apr-2020 15:45:12 UTC] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-70bbc56a596525570750.sock (Resource temporarily unavailable) in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[27-Apr-2020 15:45:12 UTC] PHP Stack trace:
[27-Apr-2020 15:45:12 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:45:12 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:45:12 UTC] PHP   3. stream_socket_client() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:67
[27-Apr-2020 15:45:13 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:45:13 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:45:13 UTC] PHP   3. stream_socket_client() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:67
[27-Apr-2020 15:45:13 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:45:13 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:45:13 UTC] PHP   3. stream_socket_client() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:67
[27-Apr-2020 15:45:12 UTC] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-70bbc56a596525570750.sock (Resource temporarily unavailable) in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[27-Apr-2020 15:45:13 UTC] PHP Stack trace:
[27-Apr-2020 15:45:13 UTC] PHP Fatal error:  Could not connect to IPC socket in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[27-Apr-2020 15:45:13 UTC] PHP Stack trace:
[27-Apr-2020 15:45:13 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:45:13 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:45:13 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:69
[27-Apr-2020 15:45:13 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:45:13 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:45:13 UTC] PHP   3. stream_socket_client() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:67
[27-Apr-2020 15:45:13 UTC] PHP Fatal error:  Could not connect to IPC socket in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[27-Apr-2020 15:45:13 UTC] PHP Stack trace:
[27-Apr-2020 15:45:13 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:45:13 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:45:13 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:69
[27-Apr-2020 15:45:12 UTC] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-70bbc56a596525570750.sock (Resource temporarily unavailable) in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[27-Apr-2020 15:45:13 UTC] PHP Stack trace:
[27-Apr-2020 15:45:13 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:45:13 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:45:13 UTC] PHP   3. stream_socket_client() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:67
[27-Apr-2020 15:45:13 UTC] PHP Fatal error:  Could not connect to IPC socket in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[27-Apr-2020 15:45:13 UTC] PHP Stack trace:
[27-Apr-2020 15:45:13 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:45:13 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:45:13 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:69
[27-Apr-2020 15:45:13 UTC] PHP Fatal error:  Could not connect to IPC socket in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[27-Apr-2020 15:45:13 UTC] PHP Stack trace:
[27-Apr-2020 15:45:13 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:45:13 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:45:13 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:69
[27-Apr-2020 15:45:13 UTC] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-70bbc56a596525570750.sock (Resource temporarily unavailable) in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[27-Apr-2020 15:45:13 UTC] PHP Stack trace:
[27-Apr-2020 15:45:13 UTC] PHP Fatal error:  Could not connect to IPC socket in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[27-Apr-2020 15:45:13 UTC] PHP Stack trace:
[27-Apr-2020 15:45:13 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:45:13 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:45:13 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:69
[27-Apr-2020 15:45:13 UTC] PHP Fatal error:  Could not connect to IPC socket in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[27-Apr-2020 15:45:13 UTC] PHP Stack trace:
[27-Apr-2020 15:45:13 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:45:13 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:45:13 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:69
[27-Apr-2020 15:45:13 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:45:13 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:45:13 UTC] PHP   3. stream_socket_client() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:67
[27-Apr-2020 15:45:13 UTC] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-70bbc56a596525570750.sock (Resource temporarily unavailable) in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[27-Apr-2020 15:45:13 UTC] PHP Stack trace:
[27-Apr-2020 15:45:13 UTC] PHP Fatal error:  Could not connect to IPC socket in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[27-Apr-2020 15:45:13 UTC] PHP Stack trace:
[27-Apr-2020 15:45:13 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:45:13 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:45:13 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:69
[27-Apr-2020 15:45:13 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:45:13 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:45:13 UTC] PHP   3. stream_socket_client() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:67
[27-Apr-2020 15:45:13 UTC] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-70bbc56a596525570750.sock (Resource temporarily unavailable) in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[27-Apr-2020 15:45:14 UTC] PHP Stack trace:
[27-Apr-2020 15:45:14 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:45:14 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:45:14 UTC] PHP   3. stream_socket_client() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:67
[27-Apr-2020 15:45:15 UTC] PHP Fatal error:  Could not connect to IPC socket in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[27-Apr-2020 15:45:15 UTC] PHP Stack trace:
[27-Apr-2020 15:45:15 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:45:15 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:45:15 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:69
[27-Apr-2020 15:45:15 UTC] PHP Fatal error:  Could not connect to IPC socket in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 69
[27-Apr-2020 15:45:15 UTC] PHP Stack trace:
[27-Apr-2020 15:45:15 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:45:15 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:45:15 UTC] PHP   3. trigger_error() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:69
[27-Apr-2020 15:45:17 UTC] PHP Warning:  stream_socket_client(): unable to connect to unix:///tmp/amp-parallel-ipc-70bbc56a596525570750.sock (Resource temporarily unavailable) in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php on line 67
[27-Apr-2020 15:45:21 UTC] PHP Stack trace:
[27-Apr-2020 15:45:21 UTC] PHP   1. {main}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:0
[27-Apr-2020 15:45:21 UTC] PHP   2. Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:40-123}() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:123
[27-Apr-2020 15:45:21 UTC] PHP   3. stream_socket_client() /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/process-runner.php:67
[27-Apr-2020 15:45:29 UTC] PHP Fatal error:  Uncaught Amp\TimeoutException: Operation timed out in /home/centos/web/public_html/cron/vendor/amphp/amp/lib/functions.php:270
Stack trace:
#0 /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/NativeDriver.php(122): Amp\Promise\{closure}()
#1 /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php(138): Amp\Loop\NativeDriver->dispatch()
#2 /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php(72): Amp\Loop\Driver->tick()
#3 /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop.php(95): Amp\Loop\Driver->run()
#4 /home/centos/web/public_html/cron/working_example/play.php(32): Amp\Loop::run()
#5 {main}

Next Amp\Parallel\Context\ContextException: Starting the process timed out in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/ProcessHub.php:141
Stack trace:
#0 [internal function]: Amp\Parallel\Context\Internal\ProcessHub->Amp\Parallel\Context\Internal\{closure}()
#1 /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php(1 in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Process.php on line 202
kelunik commented 4 years ago

@iNilo @bergmab If you have too many processes, you'll reach the default limit of 1024 file descriptors for stream_select, so you'll have to install one of the extensions.

iNilo commented 4 years ago

@kelunik thanks for your reply!

1) what plugins are you referring to? 2) is there any way you can throw an exception so its more clear ?

also I don't think I'm hitting that limit since its raised(?)

cat /proc/sys/fs/file-max -> 43900 ulimit -n -> 524288

ulimit -a ->

core file size          (blocks, -c) 0
data seg size           (kbytes, -d) unlimited
scheduling priority             (-e) 0
file size               (blocks, -f) unlimited
pending signals                 (-i) 1754
max locked memory       (kbytes, -l) 64
max memory size         (kbytes, -m) unlimited
open files                      (-n) 524288
pipe size            (512 bytes, -p) 8
POSIX message queues     (bytes, -q) 819200
real-time priority              (-r) 0
stack size              (kbytes, -s) 8192
cpu time               (seconds, -t) unlimited
max user processes              (-u) 1754
virtual memory          (kbytes, -v) unlimited
file locks                      (-x) unlimited