Comment 0 for bug 1392412

Revision history for this message
Brian Murray (brian-murray) wrote : may constantly try upload reports where server responds with 400

parse_and_upload_report will return success = True on a 400 response from the server, however if for some reason the report is not mark as handled (mark_handled) then because there is no .uploaded file whoopsie will continuely try to upload the .crash file.

from src/whoopsie.c:

        } else if (online_state && parse_and_upload_report (crash_file)) {
            if (!mark_handled (crash_file))
                log_msg ("Unable to mark report as seen (%s)\n", crash_file);

        }

Given that every crash report is not precious, we should just remove the crash_file if mark_handled fails.