From 9846daec488d8d62bde84eae70f87c38239cdef5 Mon Sep 17 00:00:00 2001 From: Piero Toffanin Date: Fri, 15 Oct 2021 12:30:32 -0400 Subject: [PATCH] Check for errcode 3221225477 --- stages/odm_app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stages/odm_app.py b/stages/odm_app.py index e9e1473d4..80156ed27 100644 --- a/stages/odm_app.py +++ b/stages/odm_app.py @@ -106,7 +106,7 @@ def execute(self): code = e.errorCode log.logger.log_json_stage_error(str(e), code, stack_trace) - if code == 139 or code == 134 or code == 1: + if code == 139 or code == 134 or code == 1 or code == 3221225477: # Segfault log.ODM_ERROR("Uh oh! Processing stopped because of strange values in the reconstruction. This is often a sign that the input data has some issues or the software cannot deal with it. Have you followed best practices for data acquisition? See https://docs.opendronemap.org/flying/") elif code == 137: