From 86d431bd96cc2fba2d3e4e3f8c1df779db02d714 Mon Sep 17 00:00:00 2001 From: Allison Browne <abrowne@gitlab.com> Date: Mon, 2 May 2022 14:32:27 -0400 Subject: [PATCH] Switch urgency to low for trace endpoint --- lib/api/ci/runner.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/api/ci/runner.rb b/lib/api/ci/runner.rb index c6c238c73a0b8..499d8112bc78b 100644 --- a/lib/api/ci/runner.rb +++ b/lib/api/ci/runner.rb @@ -212,7 +212,7 @@ class Runner < ::API::Base requires :id, type: Integer, desc: %q(Job's ID) optional :token, type: String, desc: %q(Job's authentication token) end - patch '/:id/trace', urgency: :default, feature_category: :continuous_integration do + patch '/:id/trace', urgency: :low, feature_category: :continuous_integration do job = authenticate_job!(heartbeat_runner: true) error!('400 Missing header Content-Range', 400) unless request.headers.key?('Content-Range') -- GitLab