When we try to pass --inspect to node on windows 10, it is exiting from exection in below line from inspector_io.cc. Node version is 8.15. Please share your thoughts on how to rectify this.
bool InspectorIo::Start() {
CHECK_EQ(state_, State::kNew);
CHECK_EQ(uv_thread_create(&thread_, InspectorIo::ThreadMain, this), 0);
uv_sem_wait(&thread_start_sem_); -> Exiting from this line
if (state_ == State::kError) {
return false;
}
state_ = State::kAccepting;
if (wait_for_connect_) {
DispatchMessages();
}
return true;
}