Skip to content

Commit

Permalink
Check for errcode 3221225477
Browse files Browse the repository at this point in the history
  • Loading branch information
pierotofy committed Oct 15, 2021
1 parent 93be23d commit 9846dae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stages/odm_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 9846dae

Please sign in to comment.