[FixPipeline] https://gitlab.com/gitlab-org/gitlab/-/pipelines/2527260995

Summary

Root cause: The MR added agentPlan { content contentHtml } to the EE WorkItemFeatures GraphQL fragment (ee/app/assets/javascripts/work_items/list/graphql/work_item_features.fragment.graphql). This increased the computed GraphQL complexity of all operations that import the EE WorkItem fragment → EE WorkItemFeatures fragment, pushing five of them over the GitlabSchema::AUTHENTICATED_MAX_COMPLEXITY limit of 250.

Fix: Added complexity overrides in ee/spec/graphql/all_queries_spec.rb for the five failing operations, setting their limit to 280 (consistent with the existing work_item_by_id and work_item_by_iid overrides that use the same EE WorkItem fragment):

  • app/assets/javascripts/work_items/graphql/add_linked_items.mutation.graphql → 280 (actual: 256)
  • app/assets/javascripts/work_items/graphql/create_work_item.mutation.graphql → 280 (actual: 256)
  • app/assets/javascripts/work_items/graphql/update_work_item.mutation.graphql → 280 (actual: 256)
  • app/assets/javascripts/work_items/graphql/work_item_convert.mutation.graphql → 280 (actual: 256)
  • app/assets/javascripts/work_items/graphql/work_item_updated.subscription.graphql → 280 (actual: 254)

Files modified:

  • ee/spec/graphql/all_queries_spec.rb

Fixes failing pipeline

Session 3802898

Edited by Duo Fix CI/CD Pipeline

Merge request reports

Loading