We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2642d96 commit 5e1482dCopy full SHA for 5e1482d
lib/process.js
@@ -9,9 +9,14 @@ let report = null;
9
const getReport = () => {
10
if (!report) {
11
/* istanbul ignore next */
12
- report = isLinux() && process.report
13
- ? process.report.getReport()
14
- : {};
+ if (isLinux() && process.report) {
+ const orig = process.report.excludeNetwork;
+ process.report.excludeNetwork = true;
15
+ report = process.report.getReport();
16
+ process.report.excludeNetwork = orig;
17
+ } else {
18
+ report = {};
19
+ }
20
}
21
return report;
22
};
0 commit comments