2018-11-08 19:23:39 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-09-02 18:07:02 +05:30
|
|
|
class GitlabShellWorker
|
2018-03-17 18:26:18 +05:30
|
|
|
include ApplicationWorker
|
2014-09-02 18:07:02 +05:30
|
|
|
include Gitlab::ShellAdapter
|
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
feature_category :source_code_management
|
2019-12-26 22:10:19 +05:30
|
|
|
latency_sensitive_worker!
|
2019-12-21 20:55:43 +05:30
|
|
|
|
2014-09-02 18:07:02 +05:30
|
|
|
def perform(action, *arg)
|
2019-12-26 22:10:19 +05:30
|
|
|
Gitlab::GitalyClient::NamespaceService.allow do
|
|
|
|
gitlab_shell.__send__(action, *arg) # rubocop:disable GitlabSecurity/PublicSend
|
|
|
|
end
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
end
|