summaryrefslogtreecommitdiff
path: root/lib/gitlab/sidekiq_config/dummy_worker.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/sidekiq_config/dummy_worker.rb')
-rw-r--r--lib/gitlab/sidekiq_config/dummy_worker.rb19
1 files changed, 18 insertions, 1 deletions
diff --git a/lib/gitlab/sidekiq_config/dummy_worker.rb b/lib/gitlab/sidekiq_config/dummy_worker.rb
index b7f53da8e00..8a2ea1acaab 100644
--- a/lib/gitlab/sidekiq_config/dummy_worker.rb
+++ b/lib/gitlab/sidekiq_config/dummy_worker.rb
@@ -6,7 +6,6 @@ module Gitlab
class DummyWorker
ATTRIBUTE_METHODS = {
name: :name,
- feature_category: :get_feature_category,
has_external_dependencies: :worker_has_external_dependencies?,
urgency: :get_urgency,
resource_boundary: :get_worker_resource_boundary,
@@ -27,6 +26,24 @@ module Gitlab
nil
end
+ # All dummy workers are unowned; get the feature category from the
+ # context if available.
+ def get_feature_category
+ Gitlab::ApplicationContext.current_context_attribute('meta.feature_category') || :not_owned
+ end
+
+ def feature_category_not_owned?
+ true
+ end
+
+ def get_worker_context
+ nil
+ end
+
+ def context_for_arguments(*)
+ nil
+ end
+
ATTRIBUTE_METHODS.each do |attribute, meth|
define_method meth do
@attributes[attribute]