Skip to content

Fix "Cannot connect to CI server error messages"

What does this MR do?

This MR fixes "Cannot connect to CI server error messages" by @ayufan's assumption.

The problem is with the ordering of operations.

We do:

  • INSERT ci_pipelines, UPDATE merge_request WITH ci_pipeline,

  • SELECT ci_pipelines, INSERT merge_request.

Where we should do:

  • INSERT ci_pipelines, UPDATE merge_request WITH ci_pipeline,

  • INSERT merge_request, UPDATE merge_request WITH ci_pipeline,

Are there points in the code the reviewer needs to double check?

Does this truly fix the problem?

Why was this MR needed?

This is regression . This priority is quite high.

Screenshots (if relevant)

N/A

Does this MR meet the acceptance criteria?

What are the relevant issue numbers?

/cc @ayufan @stanhu @rspeicher

Edited by Shinya Maeda

Merge request reports