Skip to content

Commit c43f520

Browse files
tolauwaecarllocos
authored andcommittedJun 14, 2023
Flush after "listening to socket" notice
Fixes #162
1 parent a9f6777 commit c43f520

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed
 

‎src/Utils/sockets.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,7 @@ void WebSocket::open() {
123123
bindSocketToAddress(this->fileDescriptor, address);
124124
startListening(this->fileDescriptor);
125125
printf("Listening on port 127.0.0.1:%i\n", this->port);
126+
fflush(stdout);
126127

127128
// block until a connection is established
128129
this->socket = listenForIncomingConnection(this->fileDescriptor, address);

‎tests/latch/latch-0.0.1.tgz

406 Bytes
Binary file not shown.

‎tests/latch/package-lock.json

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎tests/latch/src/util/warduino.bridge.ts

+1
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ export function connectSocket(interpreter: string, program: string, port: number
6969
reject(`Could not connect. Error: ${error}`);
7070
});
7171
} else {
72+
process.kill();
7273
reject();
7374
}
7475
});

0 commit comments

Comments
 (0)