Class: RemoveRunnerJob

Inherits:
ContainerBrokerBaseJob show all
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

request_id_from_args

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