From d5d9a02c8f4263c203cb7e5f10606465f808afbe Mon Sep 17 00:00:00 2001 From: Tom Poole Date: Tue, 22 Mar 2022 11:19:34 +0000 Subject: [PATCH] ChildProcessCoordinator: Fix an issue with a missing ping thread Following commit 093dbc7df1c9084e7ec71473c7119db35353fbfe pings of a child process connection need to initialised explicitly. This commit adds a missing initialisation. --- modules/juce_events/interprocess/juce_ConnectedChildProcess.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/juce_events/interprocess/juce_ConnectedChildProcess.cpp b/modules/juce_events/interprocess/juce_ConnectedChildProcess.cpp index 3623c064c5..3ad479f2cf 100644 --- a/modules/juce_events/interprocess/juce_ConnectedChildProcess.cpp +++ b/modules/juce_events/interprocess/juce_ConnectedChildProcess.cpp @@ -169,6 +169,7 @@ bool ChildProcessCoordinator::launchWorkerProcess (const File& executable, const if (connection->isConnected()) { + connection->startPinging(); sendMessageToWorker ({ startMessage, specialMessageSize }); return true; }