summaryrefslogtreecommitdiff
path: root/app/workers/gitlab_shell_one_shot_worker.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/workers/gitlab_shell_one_shot_worker.rb')
-rw-r--r--app/workers/gitlab_shell_one_shot_worker.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/app/workers/gitlab_shell_one_shot_worker.rb b/app/workers/gitlab_shell_one_shot_worker.rb
new file mode 100644
index 00000000000..4ddbcf574d5
--- /dev/null
+++ b/app/workers/gitlab_shell_one_shot_worker.rb
@@ -0,0 +1,10 @@
+class GitlabShellOneShotWorker
+ include Sidekiq::Worker
+ include Gitlab::ShellAdapter
+
+ sidekiq_options queue: :gitlab_shell, retry: false
+
+ def perform(action, *arg)
+ gitlab_shell.send(action, *arg)
+ end
+end