Skip to content

Commit 8899950

Browse files
141 is the valid return code
1 parent bd782e9 commit 8899950

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/ru/r2cloud/satellite/reader/AirspyReader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ private IQData startInternally() throws InterruptedException {
9797
new AirspyLogProcessor(req.getId(), process.getInputStream(), "airspy-stdio").start();
9898
new AirspyLogProcessor(req.getId(), process.getErrorStream(), "airspy-stderr").start();
9999
int responseCode = process.waitFor();
100-
if (responseCode != 0) {
100+
if (responseCode != 0 && responseCode != 141) {
101101
LOG.error("[{}] invalid response code airspy_rx: {}", req.getId(), responseCode);
102102
Util.deleteQuietly(rawFile);
103103
} else {

0 commit comments

Comments
 (0)