Issue #2359 if satellite decode exception occurs, don't store half record

Change-Id: Ia6cbf2513d3d3ec8f4c0a38b90ab5a8d30474ad8

Former-commit-id: 2cfa53b34097e0f1745fa2af85c30d1bb351eea0
This commit is contained in:
Nate Jensen 2014-01-21 09:06:22 -06:00
parent 70f211a2f1
commit 79d94e87cf

View file

@ -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();