Skip to content
Snippets Groups Projects
Commit d6b21f77 authored by Sam Goldstein's avatar Sam Goldstein
Browse files

Update global search endpoint urgency for new error budget opt in

parent ce408ff3
No related branches found
No related tags found
1 merge request!85971Update global search endpoint urgency for new error budget opt in
......@@ -26,7 +26,7 @@ class SearchController < ApplicationController
feature_category :global_search
urgency :high, [:opensearch]
urgency :low, [:count]
urgency :low, [:count, :autocomplete]
def show
@project = search_service.project
......
......@@ -2,6 +2,7 @@
class Admin::ElasticsearchController < Admin::ApplicationController
feature_category :global_search
urgency :low
# POST
# Scheduling indexing jobs
......
......@@ -14,6 +14,7 @@ module ApplicationSettingsController
feature_category :provision, [:seat_link_payload]
feature_category :source_code_management, [:templates]
feature_category :global_search, [:advanced_search]
urgency :low, [:advanced_search]
def elasticsearch_reindexing_task
@last_elasticsearch_reindexing_task = Elastic::ReindexingTask.last
......
......@@ -5,6 +5,7 @@ class ElasticsearchIndexedNamespaces < ::API::Base
before { authenticated_as_admin! }
feature_category :global_search
urgency :low
resource :elasticsearch_indexed_namespaces do
desc 'Rollout namespaces to be indexed up to n%' do
......
......@@ -11,6 +11,7 @@ class Search < ::API::Base
end
feature_category :global_search
urgency :low
rescue_from ActiveRecord::QueryCanceled do |e|
render_api_error!({ error: 'Request timed out' }, 408)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment