We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07ae296 commit 1eb9340Copy full SHA for 1eb9340
src/integration-tests/server-that-hangs.ts
@@ -28,18 +28,5 @@ const doNotExitImmediately = async (signal: NodeJS.Signals) => {
28
setTimeout(() => process.exit(0), 30 * 1000);
29
};
30
31
-transport.onclose = () => {
32
- server.sendLoggingMessage({
33
- level: 'debug',
34
- data: 'transport: onclose called. This should never happen'
35
- });
36
-};
37
-
38
-process.stdin.on('close', hadErr => {
39
40
41
- data: 'stdin closed. Error: ' + hadErr
42
43
-});
44
process.on('SIGINT', doNotExitImmediately);
45
process.on('SIGTERM', doNotExitImmediately);
0 commit comments