Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to launch multiple blocking processes #112

Closed
iNilo opened this issue Apr 14, 2020 · 68 comments
Closed

How to launch multiple blocking processes #112

iNilo opened this issue Apr 14, 2020 · 68 comments
Labels

Comments

@iNilo
Copy link

iNilo commented Apr 14, 2020

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.

@enumag
Copy link
Contributor

enumag commented Apr 14, 2020

What do you mean by "But I can't get it to work." ? What is it doing?

@iNilo
Copy link
Author

iNilo commented Apr 14, 2020

As in, I'm seeking advise how actually achieve this.

As for what its doing:

PHP Fatal error:  Uncaught TypeError: Expected one of the following types: Amp\Promise, React\Promise\PromiseInterface; instance of Amp\Parallel\Context\Process given in /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Internal/functions.php:53
Stack trace:
#0 /home/centos/web/public_html/cron/vendor/amphp/amp/lib/functions.php(373): Amp\Internal\createTypeError()
#1 /home/centos/web/public_html/cron/amp-delegator.php(83): Amp\Promise\all()
#2 {main}

So I figured I got to give it a promise, which it will then collect for me.
I just can't seem to find the right combination of it all :/

@enumag
Copy link
Contributor

enumag commented Apr 14, 2020

One of the problems I can see is that $process->start(); also returns a Promise which you don't yield. I recommend you to not use the wait function but instead use Loop::run() yourself and yield the promises (or rather their groups with Promise\all()).

@enumag
Copy link
Contributor

enumag commented Apr 14, 2020

Also @kelunik already advised you in #111 to use amphp/process instead of amphp/parallel. Have you tried that?

@iNilo
Copy link
Author

iNilo commented Apr 14, 2020

amphp/process seems to be more for commands like dig, ping, not specifically calling php scripts that are blocking, unless I fully misunderstood that.

@iNilo
Copy link
Author

iNilo commented Apr 14, 2020

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

errors on

PHP Fatal error:  Uncaught Amp\Parallel\Context\StatusError: The process has not been started in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Process.php:249
Stack trace:
#0 /home/centos/web/public_html/cron/amp-delegator.php(71): Amp\Parallel\Context\Process->send()
#1 {main}
  thrown in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Process.php on line 249

@enumag
Copy link
Contributor

enumag commented Apr 14, 2020

amphp/process is to call anything at all... in fact amphp/parallel is built on top of amphp/process.

@enumag
Copy link
Contributor

enumag commented Apr 14, 2020

Now you're not yielding the promises from send method. Also you can't call send before yielding the promise from start. What didn't you understand about "don't use wait"?

@iNilo
Copy link
Author

iNilo commented Apr 14, 2020

🥺

Is there any chance you could guide me with (pseudo) code please?
I'm not understanding it at all 🤕

  1. for loop 20 times.
  2. start the php child, send it data.
  3. collect the promise (?)
  4. wait for my 20 children to come in.
    (finally)
  5. process the results ( 1 DB call to reduce strain on the db )

@enumag
Copy link
Contributor

enumag commented Apr 14, 2020

Ok. Tomorrow. I need to sleep now.

@enumag
Copy link
Contributor

enumag commented Apr 15, 2020

function runProcess($value) {
    return call(
        function () {
			$process = new Process(__DIR__ . "/amp-runner.php");
			yield $process->start();
			yield $process->send($x);
        }
    )
}

Loop::run(
    function () {
        $promises = [];
        for($x = 0; $x <= 10; $x++)
        {
            $promises[] = runProcess($x);
        }
        yield $promises;
    }
);

@iNilo
Copy link
Author

iNilo commented Apr 15, 2020

Thanks a bunch.

I'm understanding it a bit more,
This is my play.php I've setup to test:

<?php
require_once "bootstrap.php";

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;

function runProcess($value)
{
	return call(
		function ()
		{
			global $value;
			$process = new Process(__DIR__ . "/blocking-process.php");
			yield $process->start();
			yield $process->send($value);
		}
	);
}

Loop::run(
	function ()
	{
		$promises = [];
		for($x = 0; $x <= 10; $x++)
		{
			$promises[] = runProcess($x);
		}
		$returns = yield $promises;
		var_dump($returns);
	}
);

this is my blocking-process.php

<?php

// The function returned by this script is run by process.php in a separate process.
// $argc and $argv are available in this process as any other cli PHP script.

use Amp\Parallel\Sync\Channel;

return function (Channel $channel): \Generator {
	$we_are = yield $channel->receive();
	sleep(10);
	yield $channel->send($we_are);
	return $we_are;
};

How would I now get the data from the children?

@JanMikes
Copy link

@iNilo check this out: https://github.com/JanMikes/php-async-playground i think it is exactly what you are looking for :-)

@kelunik kelunik changed the title question : how to launch multiple blocking processes How to launch multiple blocking processes Apr 15, 2020
@kelunik
Copy link
Member

kelunik commented Apr 15, 2020

@iNilo I think @JanMikes provided the answer to your question.

@JanMikes #112 (comment) might be helpful for you if you don't want to write your own protocol using STDOUT for communication, but rather a message based approach, where the library cares about the serialization.

@iNilo
Copy link
Author

iNilo commented Apr 15, 2020

Thanks for this @JanMikes & @kelunik
It helps me a bit further at understanding the dynamics.

I would just love to get to use the frameworks way of sending things back

yield $channel->send("Data sent from child.");

And grab it from the child as a parent.

\printf("Received the following from child: %s\n", yield $context->receive()); // Sent on line 14 of blocking-process.php

A possible last request, to understand the framework better;

Is there possibly any chance someone could write another example based on : https://github.com/amphp/parallel/blob/master/examples/process.php

Use the same blocking process, but launch the child 20 times? ❤️
I really want to understand the sending data towards the child, and reading the data form the children.

@kelunik
Copy link
Member

kelunik commented Apr 15, 2020

@iNilo You already linked the two relevant lines. What do you want to send / receive exactly? One or multiple messages?

@iNilo
Copy link
Author

iNilo commented Apr 16, 2020

@kelunik thanks, was stuck for a bit, @JanMikes example used \Amp\Process\Process which has no send function, so I swapped it to Amp\Parallel\Context\Process which finally got it working like it should.

@JanMikes possibly check out my code too.

Thanks for the support all of you ❤️
play.php

<?php
require_once "bootstrap.php";

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 = [];
\Amp\Loop::run(static function() use (&$results) {
	$promises = [];
	for($x = 0; $x <= 10; $x++)
	{
		$promises[] = \Amp\call(function() use (&$results, $x): \Generator
		{
			$process = new Amp\Parallel\Context\Process( __DIR__ . "/blocking-process.php");
			yield $process->start();
			yield $process->send($x);
			$results[] = yield $process->receive();
		});
	}
	// Run all promises at once
	yield \Amp\Promise\all($promises);
});
var_dump($results);

blocking-process.php

<?php

// The function returned by this script is run by process.php in a separate process.
// $argc and $argv are available in this process as any other cli PHP script.

use Amp\Parallel\Sync\Channel;

return function (Channel $channel): \Generator
{
	$we_are = yield $channel->receive();
	sleep(10);
	yield $channel->send(" we were runner $we_are , we just slept for 10 seconds ");
	echo $we_are;
	return $we_are;
};

results:

array(11) {
  [0] =>
  string(49) " we were runner 3 , we just slept for 10 seconds "
  [1] =>
  string(49) " we were runner 2 , we just slept for 10 seconds "
  [2] =>
  string(49) " we were runner 1 , we just slept for 10 seconds "
  [3] =>
  string(49) " we were runner 0 , we just slept for 10 seconds "
  [4] =>
  string(49) " we were runner 8 , we just slept for 10 seconds "
  [5] =>
  string(49) " we were runner 5 , we just slept for 10 seconds "
  [6] =>
  string(50) " we were runner 10 , we just slept for 10 seconds "
  [7] =>
  string(49) " we were runner 9 , we just slept for 10 seconds "
  [8] =>
  string(49) " we were runner 7 , we just slept for 10 seconds "
  [9] =>
  string(49) " we were runner 6 , we just slept for 10 seconds "
  [10] =>
  string(49) " we were runner 4 , we just slept for 10 seconds "
}

@JanMikes
Copy link

JanMikes commented Apr 16, 2020

@iNilo looks good to me

@JanMikes #112 (comment) might be helpful for you if you don't want to write your own protocol using STDOUT for communication, but rather a message based approach, where the library cares about the serialization

Process i want to run is symfony/console command that knows nothing about amphp but is capable of writing json results to stdout, thats why i went this way. How would that process receive without amphp data from $process->send($x)? Actually i dont need to send any data to the child process, just run it with correct arguments. What i need is the child to be able to return data to parent (which i thought stdout/stderr is completely fine).

I tried it here: https://github.com/JanMikes/php-async-playground/blob/parallel-context/script.php

If i understand it correctly, if i want to use channel/context to parent-child communication i need that process to be a php script which returns \Generator?

I am sure it could be done other the "amp way", instead of runnng directly symfony/console directly via new Process(['bin/console', 'xx']) i could create child process script with something like this:

<?php

return function(Channel $channel) {
    $container = createSymfonyContainer(); // magic behind ...
    $application = $container->get(Application::class);

    $code = $application->run();

    $service = $container->get(MyService::class);

    yield $channel->send($service->getResults());

    return $code;
};

I dont fully understand what are all added values using channel to communicate instead of taking it directly from stdout and if my thinking is correct, though i like that i dont have to care about serialization/deserialization and just send data to channel.

@iNilo
Copy link
Author

iNilo commented Apr 16, 2020

Whilst slightly offtopic:
The second I bump that for loop to 50 times
I'm greeted by

PHP Fatal error:  Uncaught Amp\TimeoutException: Operation timed out in /home/centos/web/public_html/cron/vendor/amphp/amp/lib/functions.php:253
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(29): 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:127
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

Was this the reason a delay was introduced in the examples?

@kelunik
Copy link
Member

kelunik commented Apr 16, 2020

@iNilo Do you have error reporting enabled? Does PHP emit any notices / warnings?

@iNilo
Copy link
Author

iNilo commented Apr 16, 2020

With xdebug on @kelunik
play.php

<?php
require_once "../bootstrap.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();
		});
	}
	// Run all promises at once
	yield \Amp\Promise\all($promises);
});
d($results);
d($endings);

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:253
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:127
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:253
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.0002     396144   1. {main}() /home/centos/web/public_html/cron/working_example/play.php:0
    0.0091    1433664   2. Amp\Loop::run() /home/centos/web/public_html/cron/working_example/play.php:32
    0.0093    1444720   3. Amp\Loop\NativeDriver->run() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop.php:95
    6.5128    3468128   4. Amp\Loop\NativeDriver->tick() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php:72
    6.5128    3461208   5. Amp\Loop\NativeDriver->error() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php:133

@kelunik
Copy link
Member

kelunik commented Apr 16, 2020

If you add yield Amp\delay(0) before line 123 in ProcessHub.php, does that help? If not, how high does the timeout have to be to get it working and no longer time out?

@iNilo
Copy link
Author

iNilo commented Apr 16, 2020

@kelunik is there any chance I can do this in my play.php ? or do I have to edit the file in my /vendor/ map ?

@kelunik
Copy link
Member

kelunik commented Apr 16, 2020

You'll need to edit the file in vendor or clone this repository and run your play.php like one of the examples in this repository.

@iNilo
Copy link
Author

iNilo commented Apr 16, 2020

Understood @kelunik

So I add yield Amp\delay(0) before or after this line? (on my end)

$channel = yield Promise\timeout($this->acceptor[$pid]->promise(), self::PROCESS_START_TIMEOUT);

Also, is this an issue on my end? (host) or library?

@iNilo
Copy link
Author

iNilo commented Apr 16, 2020

Editing my play.php did not help :(

require_once "../bootstrap.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
		{
			yield Amp\delay(2500);
			$process = new Amp\Parallel\Context\Process( __DIR__ . "/blocking-process.php");
			yield Amp\delay(2500);
			yield $process->start();
			yield Amp\delay(2500);
			yield $process->send($x);
			yield Amp\delay(2500);
			$results[] = yield $process->receive();
			$endings[] = yield $process->join();
		});
	}
	// Run all promises at once
	yield Amp\delay(2500);
	yield \Amp\Promise\all($promises);
});
d($results);
d($endings);
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:253
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(37): 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:127
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:253
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(37): 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.0002     397784   1. {main}() /home/centos/web/public_html/cron/working_example/play.php:0
    0.0093    1435304   2. Amp\Loop::run() /home/centos/web/public_html/cron/working_example/play.php:37
    0.0095    1446360   3. Amp\Loop\NativeDriver->run() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop.php:95
   11.4283    3379664   4. Amp\Loop\NativeDriver->tick() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php:72

@kelunik
Copy link
Member

kelunik commented Apr 16, 2020

Yes, right before the linked line. I'm not sure what's causing the issue, I can't currently reproduce it the same way you're experiencing it.

@iNilo
Copy link
Author

iNilo commented Apr 17, 2020

@kelunik

When adding a delay at the requested line:

$channel = yield Promise\timeout($this->acceptor[$pid]->promise(), self::PROCESS_START_TIMEOUT);

So it looks like:

            try {
		yield delay(150);
                $channel = yield Promise\timeout($this->acceptor[$pid]->promise(), self::PROCESS_START_TIMEOUT);
		
            } 

php play.php

PHP Notice:  Undefined offset: 4414 in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/ProcessHub.php on line 124
PHP Stack trace:
PHP   1. {main}() /home/centos/web/public_html/cron/working_example/play.php:0
PHP   2. Amp\Loop::run() /home/centos/web/public_html/cron/working_example/play.php:37
PHP   3. Amp\Loop\NativeDriver->run() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop.php:95
PHP   4. Amp\Loop\NativeDriver->tick() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php:72
PHP   5. Amp\Loop\NativeDriver->dispatch() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php:138
PHP   6. Amp\Delayed->Amp\{closure:/home/centos/web/public_html/cron/vendor/amphp/amp/lib/Delayed.php:24-26}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/NativeDriver.php:122
PHP   7. Amp\Delayed->resolve() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Delayed.php:25
PHP   8. Amp\Coroutine->Amp\{closure:/home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:91-148}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Internal/Placeholder.php:149
PHP   9. Generator->send() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:118
PHP  10. Amp\Parallel\Context\Internal\ProcessHub->Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/ProcessHub.php:117-138}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:118

Notice: Undefined offset: 4414 in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/ProcessHub.php on line 124

Call Stack:
    0.0002     397752   1. {main}() /home/centos/web/public_html/cron/working_example/play.php:0
    0.0090    1435272   2. Amp\Loop::run() /home/centos/web/public_html/cron/working_example/play.php:37
    0.0092    1446328   3. Amp\Loop\NativeDriver->run() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop.php:95
    6.3709    3388192   4. Amp\Loop\NativeDriver->tick() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php:72
    6.6292    3376320   5. Amp\Loop\NativeDriver->dispatch() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php:138
    6.6302    3397888   6. Amp\Delayed->Amp\{closure:/home/centos/web/public_html/cron/vendor/amphp/amp/lib/Delayed.php:24-26}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/NativeDriver.php:122
    6.6302    3397888   7. Amp\Delayed->resolve() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Delayed.php:25
    6.6302    3397888   8. Amp\Coroutine->Amp\{closure:/home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:91-148}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Internal/Placeholder.php:149
    6.6302    3397984   9. Generator->send() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:118
    6.6302    3397984  10. Amp\Parallel\Context\Internal\ProcessHub->Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/ProcessHub.php:117-138}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:118

PHP Notice:  Undefined offset: 4415 in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/ProcessHub.php on line 124
PHP Stack trace:
PHP   1. {main}() /home/centos/web/public_html/cron/working_example/play.php:0
PHP   2. Amp\Loop::run() /home/centos/web/public_html/cron/working_example/play.php:37
PHP   3. Amp\Loop\NativeDriver->run() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop.php:95
PHP   4. Amp\Loop\NativeDriver->tick() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php:72
PHP   5. Amp\Loop\NativeDriver->dispatch() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php:138
PHP   6. Amp\Delayed->Amp\{closure:/home/centos/web/public_html/cron/vendor/amphp/amp/lib/Delayed.php:24-26}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/NativeDriver.php:122
PHP   7. Amp\Delayed->resolve() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Delayed.php:25
PHP   8. Amp\Coroutine->Amp\{closure:/home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:91-148}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Internal/Placeholder.php:149
PHP   9. Generator->send() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:118
PHP  10. Amp\Parallel\Context\Internal\ProcessHub->Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/ProcessHub.php:117-138}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:118

Notice: Undefined offset: 4415 in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/ProcessHub.php on line 124

Call Stack:
    0.0002     397752   1. {main}() /home/centos/web/public_html/cron/working_example/play.php:0
    0.0090    1435272   2. Amp\Loop::run() /home/centos/web/public_html/cron/working_example/play.php:37
    0.0092    1446328   3. Amp\Loop\NativeDriver->run() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop.php:95
    6.3709    3388192   4. Amp\Loop\NativeDriver->tick() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php:72
    6.6292    3376320   5. Amp\Loop\NativeDriver->dispatch() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php:138
    6.6488    3431848   6. Amp\Delayed->Amp\{closure:/home/centos/web/public_html/cron/vendor/amphp/amp/lib/Delayed.php:24-26}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/NativeDriver.php:122
    6.6488    3431848   7. Amp\Delayed->resolve() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Delayed.php:25
    6.6489    3431848   8. Amp\Coroutine->Amp\{closure:/home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:91-148}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Internal/Placeholder.php:149
    6.6489    3431944   9. Generator->send() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:118
    6.6489    3431944  10. Amp\Parallel\Context\Internal\ProcessHub->Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/ProcessHub.php:117-138}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:118

PHP Notice:  Undefined offset: 4412 in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/ProcessHub.php on line 124
PHP Stack trace:
PHP   1. {main}() /home/centos/web/public_html/cron/working_example/play.php:0
PHP   2. Amp\Loop::run() /home/centos/web/public_html/cron/working_example/play.php:37
PHP   3. Amp\Loop\NativeDriver->run() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop.php:95
PHP   4. Amp\Loop\NativeDriver->tick() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php:72
PHP   5. Amp\Loop\NativeDriver->dispatch() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php:138
PHP   6. Amp\Delayed->Amp\{closure:/home/centos/web/public_html/cron/vendor/amphp/amp/lib/Delayed.php:24-26}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/NativeDriver.php:122
PHP   7. Amp\Delayed->resolve() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Delayed.php:25
PHP   8. Amp\Coroutine->Amp\{closure:/home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:91-148}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Internal/Placeholder.php:149
PHP   9. Generator->send() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:118
PHP  10. Amp\Parallel\Context\Internal\ProcessHub->Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/ProcessHub.php:117-138}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:118

Notice: Undefined offset: 4412 in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/ProcessHub.php on line 124

Call Stack:
    0.0002     397752   1. {main}() /home/centos/web/public_html/cron/working_example/play.php:0
    0.0090    1435272   2. Amp\Loop::run() /home/centos/web/public_html/cron/working_example/play.php:37
    0.0092    1446328   3. Amp\Loop\NativeDriver->run() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop.php:95
    6.3709    3388192   4. Amp\Loop\NativeDriver->tick() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php:72
    6.6292    3376320   5. Amp\Loop\NativeDriver->dispatch() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php:138
    6.6741    3405776   6. Amp\Delayed->Amp\{closure:/home/centos/web/public_html/cron/vendor/amphp/amp/lib/Delayed.php:24-26}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/NativeDriver.php:122
    6.6741    3405776   7. Amp\Delayed->resolve() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Delayed.php:25
    6.6742    3405776   8. Amp\Coroutine->Amp\{closure:/home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:91-148}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Internal/Placeholder.php:149
    6.6742    3405872   9. Generator->send() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:118
    6.6742    3405872  10. Amp\Parallel\Context\Internal\ProcessHub->Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/ProcessHub.php:117-138}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:118

PHP Notice:  Undefined offset: 4409 in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/ProcessHub.php on line 124
PHP Stack trace:
PHP   1. {main}() /home/centos/web/public_html/cron/working_example/play.php:0
PHP   2. Amp\Loop::run() /home/centos/web/public_html/cron/working_example/play.php:37
PHP   3. Amp\Loop\NativeDriver->run() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop.php:95
PHP   4. Amp\Loop\NativeDriver->tick() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php:72
PHP   5. Amp\Loop\NativeDriver->dispatch() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php:138
PHP   6. Amp\Delayed->Amp\{closure:/home/centos/web/public_html/cron/vendor/amphp/amp/lib/Delayed.php:24-26}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/NativeDriver.php:122
PHP   7. Amp\Delayed->resolve() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Delayed.php:25
PHP   8. Amp\Coroutine->Amp\{closure:/home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:91-148}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Internal/Placeholder.php:149
PHP   9. Generator->send() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:118
PHP  10. Amp\Parallel\Context\Internal\ProcessHub->Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/ProcessHub.php:117-138}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:118

Notice: Undefined offset: 4409 in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/ProcessHub.php on line 124

Call Stack:
    0.0002     397752   1. {main}() /home/centos/web/public_html/cron/working_example/play.php:0
    0.0090    1435272   2. Amp\Loop::run() /home/centos/web/public_html/cron/working_example/play.php:37
    0.0092    1446328   3. Amp\Loop\NativeDriver->run() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop.php:95
    6.3709    3388192   4. Amp\Loop\NativeDriver->tick() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php:72
    6.6292    3376320   5. Amp\Loop\NativeDriver->dispatch() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php:138
    6.6746    3379064   6. Amp\Delayed->Amp\{closure:/home/centos/web/public_html/cron/vendor/amphp/amp/lib/Delayed.php:24-26}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/NativeDriver.php:122
    6.6746    3379064   7. Amp\Delayed->resolve() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Delayed.php:25
    6.6747    3379064   8. Amp\Coroutine->Amp\{closure:/home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:91-148}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Internal/Placeholder.php:149
    6.6747    3379160   9. Generator->send() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:118
    6.6747    3379160  10. Amp\Parallel\Context\Internal\ProcessHub->Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/ProcessHub.php:117-138}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:118

PHP Notice:  Undefined offset: 4408 in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/ProcessHub.php on line 124
PHP Stack trace:
PHP   1. {main}() /home/centos/web/public_html/cron/working_example/play.php:0
PHP   2. Amp\Loop::run() /home/centos/web/public_html/cron/working_example/play.php:37
PHP   3. Amp\Loop\NativeDriver->run() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop.php:95
PHP   4. Amp\Loop\NativeDriver->tick() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php:72
PHP   5. Amp\Loop\NativeDriver->dispatch() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php:138
PHP   6. Amp\Delayed->Amp\{closure:/home/centos/web/public_html/cron/vendor/amphp/amp/lib/Delayed.php:24-26}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/NativeDriver.php:122
PHP   7. Amp\Delayed->resolve() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Delayed.php:25
PHP   8. Amp\Coroutine->Amp\{closure:/home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:91-148}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Internal/Placeholder.php:149
PHP   9. Generator->send() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:118
PHP  10. Amp\Parallel\Context\Internal\ProcessHub->Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/ProcessHub.php:117-138}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:118

Notice: Undefined offset: 4408 in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/ProcessHub.php on line 124

Call Stack:
    0.0002     397752   1. {main}() /home/centos/web/public_html/cron/working_example/play.php:0
    0.0090    1435272   2. Amp\Loop::run() /home/centos/web/public_html/cron/working_example/play.php:37
    0.0092    1446328   3. Amp\Loop\NativeDriver->run() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop.php:95
    6.3709    3388192   4. Amp\Loop\NativeDriver->tick() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php:72
    6.6292    3376320   5. Amp\Loop\NativeDriver->dispatch() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php:138
    6.6856    3352384   6. Amp\Delayed->Amp\{closure:/home/centos/web/public_html/cron/vendor/amphp/amp/lib/Delayed.php:24-26}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/NativeDriver.php:122
    6.6856    3352384   7. Amp\Delayed->resolve() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Delayed.php:25
    6.6856    3352384   8. Amp\Coroutine->Amp\{closure:/home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:91-148}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Internal/Placeholder.php:149
    6.6856    3352480   9. Generator->send() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:118
    6.6856    3352480  10. Amp\Parallel\Context\Internal\ProcessHub->Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/ProcessHub.php:117-138}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:118

PHP Notice:  Undefined offset: 4413 in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/ProcessHub.php on line 124
PHP Stack trace:
PHP   1. {main}() /home/centos/web/public_html/cron/working_example/play.php:0
PHP   2. Amp\Loop::run() /home/centos/web/public_html/cron/working_example/play.php:37
PHP   3. Amp\Loop\NativeDriver->run() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop.php:95
PHP   4. Amp\Loop\NativeDriver->tick() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php:72
PHP   5. Amp\Loop\NativeDriver->dispatch() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php:138
PHP   6. Amp\Delayed->Amp\{closure:/home/centos/web/public_html/cron/vendor/amphp/amp/lib/Delayed.php:24-26}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/NativeDriver.php:122
PHP   7. Amp\Delayed->resolve() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Delayed.php:25
PHP   8. Amp\Coroutine->Amp\{closure:/home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:91-148}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Internal/Placeholder.php:149
PHP   9. Generator->send() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:118
PHP  10. Amp\Parallel\Context\Internal\ProcessHub->Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/ProcessHub.php:117-138}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:118

Notice: Undefined offset: 4413 in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/ProcessHub.php on line 124

Call Stack:
    0.0002     397752   1. {main}() /home/centos/web/public_html/cron/working_example/play.php:0
    0.0090    1435272   2. Amp\Loop::run() /home/centos/web/public_html/cron/working_example/play.php:37
    0.0092    1446328   3. Amp\Loop\NativeDriver->run() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop.php:95
    6.3709    3388192   4. Amp\Loop\NativeDriver->tick() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php:72
    6.6292    3376320   5. Amp\Loop\NativeDriver->dispatch() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php:138
    6.6861    3325736   6. Amp\Delayed->Amp\{closure:/home/centos/web/public_html/cron/vendor/amphp/amp/lib/Delayed.php:24-26}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/NativeDriver.php:122
    6.6861    3325736   7. Amp\Delayed->resolve() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Delayed.php:25
    6.6861    3325736   8. Amp\Coroutine->Amp\{closure:/home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:91-148}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Internal/Placeholder.php:149
    6.6861    3325832   9. Generator->send() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:118
    6.6861    3325832  10. Amp\Parallel\Context\Internal\ProcessHub->Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/ProcessHub.php:117-138}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:118

PHP Notice:  Undefined offset: 4411 in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/ProcessHub.php on line 124
PHP Stack trace:
PHP   1. {main}() /home/centos/web/public_html/cron/working_example/play.php:0
PHP   2. Amp\Loop::run() /home/centos/web/public_html/cron/working_example/play.php:37
PHP   3. Amp\Loop\NativeDriver->run() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop.php:95
PHP   4. Amp\Loop\NativeDriver->tick() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php:72
PHP   5. Amp\Loop\NativeDriver->dispatch() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php:138
PHP   6. Amp\Delayed->Amp\{closure:/home/centos/web/public_html/cron/vendor/amphp/amp/lib/Delayed.php:24-26}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/NativeDriver.php:122
PHP   7. Amp\Delayed->resolve() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Delayed.php:25
PHP   8. Amp\Coroutine->Amp\{closure:/home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:91-148}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Internal/Placeholder.php:149
PHP   9. Generator->send() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:118
PHP  10. Amp\Parallel\Context\Internal\ProcessHub->Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/ProcessHub.php:117-138}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:118

Notice: Undefined offset: 4411 in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/ProcessHub.php on line 124

Call Stack:
    0.0002     397752   1. {main}() /home/centos/web/public_html/cron/working_example/play.php:0
    0.0090    1435272   2. Amp\Loop::run() /home/centos/web/public_html/cron/working_example/play.php:37
    0.0092    1446328   3. Amp\Loop\NativeDriver->run() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop.php:95
    6.3709    3388192   4. Amp\Loop\NativeDriver->tick() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php:72
    6.6292    3376320   5. Amp\Loop\NativeDriver->dispatch() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php:138
    6.6867    3299120   6. Amp\Delayed->Amp\{closure:/home/centos/web/public_html/cron/vendor/amphp/amp/lib/Delayed.php:24-26}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/NativeDriver.php:122
    6.6867    3299120   7. Amp\Delayed->resolve() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Delayed.php:25
    6.6867    3299120   8. Amp\Coroutine->Amp\{closure:/home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:91-148}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Internal/Placeholder.php:149
    6.6867    3299216   9. Generator->send() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:118
    6.6867    3299216  10. Amp\Parallel\Context\Internal\ProcessHub->Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/ProcessHub.php:117-138}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:118

PHP Notice:  Undefined offset: 4410 in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/ProcessHub.php on line 124
PHP Stack trace:
PHP   1. {main}() /home/centos/web/public_html/cron/working_example/play.php:0
PHP   2. Amp\Loop::run() /home/centos/web/public_html/cron/working_example/play.php:37
PHP   3. Amp\Loop\NativeDriver->run() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop.php:95
PHP   4. Amp\Loop\NativeDriver->tick() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php:72
PHP   5. Amp\Loop\NativeDriver->dispatch() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php:138
PHP   6. Amp\Delayed->Amp\{closure:/home/centos/web/public_html/cron/vendor/amphp/amp/lib/Delayed.php:24-26}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/NativeDriver.php:122
PHP   7. Amp\Delayed->resolve() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Delayed.php:25
PHP   8. Amp\Coroutine->Amp\{closure:/home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:91-148}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Internal/Placeholder.php:149
PHP   9. Generator->send() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:118
PHP  10. Amp\Parallel\Context\Internal\ProcessHub->Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/ProcessHub.php:117-138}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:118

Notice: Undefined offset: 4410 in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/ProcessHub.php on line 124

Call Stack:
    0.0002     397752   1. {main}() /home/centos/web/public_html/cron/working_example/play.php:0
    0.0090    1435272   2. Amp\Loop::run() /home/centos/web/public_html/cron/working_example/play.php:37
    0.0092    1446328   3. Amp\Loop\NativeDriver->run() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop.php:95
    6.3709    3388192   4. Amp\Loop\NativeDriver->tick() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php:72
    6.6292    3376320   5. Amp\Loop\NativeDriver->dispatch() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php:138
    6.6871    3272552   6. Amp\Delayed->Amp\{closure:/home/centos/web/public_html/cron/vendor/amphp/amp/lib/Delayed.php:24-26}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/NativeDriver.php:122
    6.6871    3272552   7. Amp\Delayed->resolve() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Delayed.php:25
    6.6871    3272552   8. Amp\Coroutine->Amp\{closure:/home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:91-148}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Internal/Placeholder.php:149
    6.6871    3272648   9. Generator->send() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:118
    6.6871    3272648  10. Amp\Parallel\Context\Internal\ProcessHub->Amp\Parallel\Context\Internal\{closure:/home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/ProcessHub.php:117-138}() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Coroutine.php:118

PHP Fatal error:  Uncaught Error: Call to a member function promise() on null in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Internal/ProcessHub.php:124
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(118): Generator->send()
#2 /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Internal/Placeholder.php(149): Amp\Coroutine->Amp\{closure}()
#3 /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Delayed.php(25): Amp\Delayed->resolve()
#4 /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/NativeDriver.php(122): Amp\Delayed->Amp\{closure}()
#5 /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php(138): Amp\Loop\NativeDriver->dispatch()
#6 /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php(72): Amp\Loop\Driver->tick()
#7 /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop.php(95): Amp\Loop\Driver->run()
#8  in /home/centos/web/public_html/cron/vendor/amphp/parallel/lib/Context/Process.php on line 202

Fatal error: Uncaught Error: Call to a member function promise() on null 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.0002     397752   1. {main}() /home/centos/web/public_html/cron/working_example/play.php:0
    0.0090    1435272   2. Amp\Loop::run() /home/centos/web/public_html/cron/working_example/play.php:37
    0.0092    1446328   3. Amp\Loop\NativeDriver->run() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop.php:95
    6.6984    3245096   4. Amp\Loop\NativeDriver->tick() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php:72
    6.6989    3229288   5. Amp\Loop\NativeDriver->error() /home/centos/web/public_html/cron/vendor/amphp/amp/lib/Loop/Driver.php:133

@kelunik
Copy link
Member

kelunik commented Apr 20, 2020

How do things change if you disable xdebug? I can reproduce errors in case xdebug is enabled, but not the timeouts you see.

@bergmab
Copy link

bergmab commented Apr 20, 2020

On my side xdebug is not enabled and I am still getting those errors with branch issue-112-kelunik:

7 => Amp\Parallel\Context\ContextException^ {#419028
   #message: "Starting the process failed"
   #code: 0
   #file: "./vendor/amphp/parallel/lib/Context/Process.php"
   #line: 202
   -previous: Amp\Parallel\Context\ContextException^ {#415499
     #message: "Starting the process timed out"
     #code: 0
     #file: "./vendor/amphp/parallel/lib/Context/Internal/ProcessHub.php"
     #line: 127
     -previous: Amp\TimeoutException^ {#418354 …5}
     trace: { …31}
   }

@iNilo
Copy link
Author

iNilo commented Apr 20, 2020

@kelunik me butchering xdebug.

php play.php

PHP Warning:  Failed loading Zend extension 'xdebug.so' (tried: /usr/lib64/php/modules/xdebug.so (/usr/lib64/php/modules/xdebug.so: cannot open shared object file: No such file or directory), /usr/lib64/php/modules/xdebug.so.so (/usr/lib64/php/modules/xdebug.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0
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:130
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/Internal/ProcessHub.php:130
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

@bergmab
Copy link

bergmab commented Apr 20, 2020

@kelunik do you test with a build of PHP with ZTS (Zend Thread Safety) enabled? On my side it's not.

PHP 7.4.5 (cli) (built: Apr 14 2020 12:54:33) ( NTS )
Copyright (c) The PHP Group
Zend Engine v3.4.0, Copyright (c) Zend Technologies

@bergmab
Copy link

bergmab commented Apr 22, 2020

@kelunik @trowski When ZTS & krakjoe/parallel is installed does amphp/parallel automatically uses it instead of processes? If yes, does the tests you are doing on your side are are with ZTS & krakjoe/parallel? If yes, can it explains why you cannot reproduce the issue? Just brainstorming here...

@iNilo did you try with ZTS & krakjoe/parallel installed?

@kelunik
Copy link
Member

kelunik commented Apr 22, 2020

@bergmab I can reproduce it with php examples/4-closure.php 100 100 now after fixing another bug.

@kelunik
Copy link
Member

kelunik commented Apr 22, 2020

@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
Copy link

bergmab commented Apr 22, 2020

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
Copy link
Member

kelunik commented Apr 23, 2020

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
Copy link

bergmab commented Apr 23, 2020

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

@kelunik
Copy link
Member

kelunik commented Apr 23, 2020

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

@iNilo
Copy link
Author

iNilo commented Apr 23, 2020

@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 added a commit that referenced this issue Apr 23, 2020
@kelunik
Copy link
Member

kelunik commented Apr 23, 2020

@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
Copy link

bergmab commented Apr 23, 2020

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 added a commit that referenced this issue Apr 23, 2020
@kelunik
Copy link
Member

kelunik commented Apr 23, 2020

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
Copy link

bergmab commented Apr 23, 2020

Latest master commit, same behavior.

@bergmab
Copy link

bergmab commented Apr 23, 2020

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
Copy link
Member

kelunik commented Apr 24, 2020

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

@kelunik kelunik reopened this Apr 24, 2020
@bergmab
Copy link

bergmab commented Apr 24, 2020

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
Copy link
Author

iNilo commented Apr 27, 2020

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
Copy link

bergmab commented Apr 27, 2020

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

@iNilo
Copy link
Author

iNilo commented Apr 27, 2020

@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
Copy link
Member

kelunik commented Apr 27, 2020

@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
Copy link
Author

iNilo commented Apr 27, 2020

@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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Development

No branches or pull requests

6 participants