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 3d1eaa6 commit ede53cfCopy full SHA for ede53cf
SG.CodeCoverage.Recorder/RecordingController/RuntimeConfig.cs
@@ -80,7 +80,7 @@ private void Cleanup()
80
var toDelete = new List<RunningProcess>();
81
var runningProcessIDs = new HashSet<int>(Process.GetProcesses().Select(p => p.Id));
82
83
- Processes.RemoveAll(p => runningProcessIDs.Contains(p.ID));
+ Processes.RemoveAll(p => !runningProcessIDs.Contains(p.ID));
84
}
85
86
private static void ThrowInvalidFormat()
0 commit comments