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 382a7c7 commit a6dca98Copy full SHA for a6dca98
pkg/pub_worker/lib/src/analyze.dart
@@ -161,11 +161,10 @@ Future<void> _analyzePackage(
161
.transform(LineSplitter())
162
.forEach(log.writeln),
163
pana.exitOrTimeout(_panaTimeout, () {
164
- log.writeln('TIMEOUT: pana sending SIGTERM/SIGKILL');
+ log.writeln('TIMEOUT: sending SIGTERM/SIGKILL to pana.');
165
}),
166
]).catchError((e, st) {
167
- log.writeln('Error waiting for pana process: $e');
168
- log.writeln(st);
+ log.writeln('TIMEOUT: sending SIGKILL to pana.');
169
// kill the process if not already killed
170
try {
171
pana.kill(ProcessSignal.sigkill);
0 commit comments