From b6df6b57a1ae7f3965ac3a8819fea1e003051754 Mon Sep 17 00:00:00 2001 From: Akos Kitta Date: Fri, 17 Jul 2020 10:21:40 +0200 Subject: [PATCH] Aligned the IDE with gRPC server startup message. Signed-off-by: Akos Kitta --- arduino-ide-extension/src/node/arduino-daemon-impl.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arduino-ide-extension/src/node/arduino-daemon-impl.ts b/arduino-ide-extension/src/node/arduino-daemon-impl.ts index 791a2ec5..a315a40f 100644 --- a/arduino-ide-extension/src/node/arduino-daemon-impl.ts +++ b/arduino-ide-extension/src/node/arduino-daemon-impl.ts @@ -166,7 +166,7 @@ export class ArduinoDaemonImpl implements ArduinoDaemon, BackendApplicationContr if (error) { ready.reject(error); } - if (message.includes('Daemon is listening on TCP port')) { + if (message.includes('Daemon is now listening on 127.0.0.1')) { grpcServerIsReady = true; ready.resolve(daemon); }