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 bd782e9 commit 8899950Copy full SHA for 8899950
src/main/java/ru/r2cloud/satellite/reader/AirspyReader.java
@@ -97,7 +97,7 @@ private IQData startInternally() throws InterruptedException {
97
new AirspyLogProcessor(req.getId(), process.getInputStream(), "airspy-stdio").start();
98
new AirspyLogProcessor(req.getId(), process.getErrorStream(), "airspy-stderr").start();
99
int responseCode = process.waitFor();
100
- if (responseCode != 0) {
+ if (responseCode != 0 && responseCode != 141) {
101
LOG.error("[{}] invalid response code airspy_rx: {}", req.getId(), responseCode);
102
Util.deleteQuietly(rawFile);
103
} else {
0 commit comments