Issue #2359 if satellite decode exception occurs, don't store half record
Change-Id: Ia6cbf2513d3d3ec8f4c0a38b90ab5a8d30474ad8 Former-commit-id: 2cfa53b34097e0f1745fa2af85c30d1bb351eea0
This commit is contained in:
parent
70f211a2f1
commit
79d94e87cf
1 changed files with 2 additions and 1 deletions
|
@ -460,8 +460,9 @@ public class SatelliteDecoder {
|
|||
}
|
||||
timer.stop();
|
||||
perfLog.logDuration("Time to Decode", timer.getElapsedTime());
|
||||
} catch (Exception e) {
|
||||
} catch (Throwable e) {
|
||||
statusHandler.error("Error decoding satellite", e);
|
||||
record = null;
|
||||
} finally {
|
||||
try {
|
||||
f.close();
|
||||
|
|
Loading…
Add table
Reference in a new issue