File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -301,7 +301,8 @@ StubLauncher::Launch()
301
301
// monitoring thread may take longer which can make the server process think
302
302
// that the stub process is unhealthy and return early. Waiting until the
303
303
// health thread is spawn would make sure would prevent this issue.
304
- parent_message_queue_->Pop ();
304
+ bi::managed_external_buffer::handle_t message;
305
+ RETURN_IF_ERROR (ReceiveMessageFromStub (message));
305
306
306
307
if (stub_process_kind_ == " AUTOCOMPLETE_STUB" ) {
307
308
try {
@@ -458,7 +459,8 @@ StubLauncher::Launch()
458
459
// monitoring thread may take longer which can make the server process think
459
460
// that the stub process is unhealthy and return early. Waiting until the
460
461
// health thread is spawn would prevent this issue.
461
- parent_message_queue_->Pop ();
462
+ bi::managed_external_buffer::handle_t message;
463
+ RETURN_IF_ERROR (ReceiveMessageFromStub (message));
462
464
463
465
if (stub_process_kind_ == " AUTOCOMPLETE_STUB" ) {
464
466
try {
You can’t perform that action at this time.
0 commit comments