Class: RemoveRunnerJob
- Inherits:
-
ContainerBrokerBaseJob
- Object
- ActiveJob::Base
- ApplicationJob
- ContainerBrokerBaseJob
- RemoveRunnerJob
- Defined in:
- app/jobs/remove_runner_job.rb
Constant Summary
Constants inherited from ContainerBrokerBaseJob
ContainerBrokerBaseJob::JOB_METRIC
Instance Method Summary collapse
Methods inherited from ContainerBrokerBaseJob
Instance Method Details
#perform(node:, runner_id:) ⇒ Object
6 7 8 9 10 |
# File 'app/jobs/remove_runner_job.rb', line 6 def perform(node:, runner_id:) node .runner_service(:remove_runner) .perform(node: node, runner_id: runner_id) end |