Skip to content

Raise and track project destroy errors

Allison Browne requested to merge ab-raise-and-track-errors into master

What does this MR do?

The project destroy service currently rescues all errors without re-raising them. It does store them as a delete_error on projects however.

This makes it difficult to develop this code because any legitimate bugs leading to errors are not raised as errors.

This also may be hiding errors from sentry errors that may be important to address. For instance this error is in the delete_errors field:

 PG::ForeignKeyViolation: ERROR:  update or delete on table "projects" violates foreign key constraint "fk_rails_2e02bbd1a6" on table "ci_freeze_periods"

                                                                                     +
 DETAIL:  Key (id)=(24575385) is still referenced from table "ci_freeze_periods".

Screenshots (strongly suggested)

Does this MR meet the acceptance criteria?

Conformity

Availability and Testing

Security

If this MR contains changes to processing or storing of credentials or tokens, authorization and authentication methods and other items described in the security review guidelines:

  • Label as security and @ mention @gitlab-com/gl-security/appsec
  • The MR includes necessary changes to maintain consistency between UI, API, email, or other methods
  • Security reports checked/validated by a reviewer from the AppSec team
Edited by Allison Browne

Merge request reports