Commit 6b02dc3c authored by John Hope's avatar John Hope

Update Product Planning Controller Urgencies

Controller actions loading HTML pages without applying filters
were given an urgency of medium (0.5s). However, they breach this
with almost identical frequency (circa 10%). This indicates there
is probably no information unique to the controller actions. It
also causes error budget spend which is not likely to be
attributable to the Rails stack.

This change reverts those urgencies to the default.
parent e22e94ce
......@@ -16,7 +16,7 @@ class Groups::EpicBoardsController < Groups::ApplicationController
track_redis_hll_event :index, :show, name: 'g_project_management_users_viewing_epic_boards'
feature_category :portfolio_management
urgency :medium, [:index, :show]
urgency :default, [:index, :show]
private
......
......@@ -23,7 +23,7 @@ class Groups::EpicsController < Groups::ApplicationController
end
feature_category :portfolio_management
urgency :medium, [:show, :new]
urgency :default, [:show, :new]
urgency :low, [:discussions]
def new
......
......@@ -9,7 +9,7 @@ module Groups
before_action :persist_roadmap_layout, only: [:show]
feature_category :portfolio_management
urgency :medium, [:show]
urgency :default, [:show]
# show roadmap for a group
def show
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment