Welcome to mirror list, hosted at ThFree Co, Russian Federation.

update_runner_service.rb « runners « ci « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6cc080f81c24bc2a65cdb4e7ebf8ce3b52c8ec57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

module Ci
  module Runners
    class UpdateRunnerService
      attr_reader :runner

      def initialize(runner)
        @runner = runner
      end

      def update(params)
        params[:active] = !params.delete(:paused) if params.include?(:paused)

        runner.update(params).tap do |updated|
          runner.tick_runner_queue if updated
        end
      end
    end
  end
end