From 19703d73c6bd5cb2306c74d9fba6c5b44042c184 Mon Sep 17 00:00:00 2001 From: Sergey Avseyev Date: Mon, 22 Apr 2024 12:26:32 -0700 Subject: [PATCH] PCBC-986: Temporarily disable notifyFork test (#162) --- tests/ForkTest.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/ForkTest.php b/tests/ForkTest.php index b3856395..1693bc23 100644 --- a/tests/ForkTest.php +++ b/tests/ForkTest.php @@ -23,6 +23,11 @@ public function testForkWorkflow() if (!extension_loaded("pcntl")) { $this->markTestSkipped("The 'pcntl' extension require to test Cluster::notifyFork helper"); } + $this->markTestSkipped( + "PCBC-986: the extension does not restart connections in the child immediately, " . + "so this test might produce errors when the child handles responses addressed " . + "to the parent." + ); $id = $this->uniqueId(); $collection = $this->defaultCollection(); $res = $collection->upsert($id, ["answer" => 42]);