File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ namespace ts.server {
4848 readonly data : ProjectInfoTelemetryEventData ;
4949 }
5050
51- /**
51+ /*
5252 * __GDPR__
5353 * "projectInfo" : {
5454 * "${include}": ["${TypeScriptCommonProperties}"],
Original file line number Diff line number Diff line change @@ -2883,7 +2883,7 @@ namespace ts.server.protocol {
28832883 payload : TypingsInstalledTelemetryEventPayload ;
28842884 }
28852885
2886- /**
2886+ /*
28872887 * __GDPR__
28882888 * "typingsinstalled" : {
28892889 * "${include}": ["${TypeScriptCommonProperties}"],
Original file line number Diff line number Diff line change @@ -291,8 +291,8 @@ namespace Harness.Parallel.Host {
291291 worker . accumulatedOutput += d . toString ( ) ;
292292 console . log ( `[Worker ${ i } ]` , d . toString ( ) ) ;
293293 } ;
294- worker . process . stderr . on ( "data" , appendOutput ) ;
295- worker . process . stdout . on ( "data" , appendOutput ) ;
294+ worker . process . stderr ! . on ( "data" , appendOutput ) ;
295+ worker . process . stdout ! . on ( "data" , appendOutput ) ;
296296 const killChild = ( timeout : TaskTimeout ) => {
297297 worker . process . kill ( ) ;
298298 console . error ( `Worker exceeded ${ timeout . duration } ms timeout ${ worker . currentTasks && worker . currentTasks . length ? `while running test '${ worker . currentTasks [ 0 ] . file } '.` : `during test setup.` } ` ) ;
You can’t perform that action at this time.
0 commit comments