1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-03 03:30:06 +00:00

ChildProcessCoordinator: Fix an issue with a missing ping thread

Following commit 093dbc7df1 pings of a
child process connection need to initialised explicitly. This commit
adds a missing initialisation.
This commit is contained in:
Tom Poole 2022-03-22 11:19:34 +00:00
parent 27abc89396
commit d5d9a02c8f

View file

@ -169,6 +169,7 @@ bool ChildProcessCoordinator::launchWorkerProcess (const File& executable, const
if (connection->isConnected())
{
connection->startPinging();
sendMessageToWorker ({ startMessage, specialMessageSize });
return true;
}