This file is indexed.

/usr/lib/ruby/vendor_ruby/unicorn/worker_killer/configuration.rb is in ruby-unicorn-worker-killer 0.4.4-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
module Unicorn::WorkerKiller
  class Configuration
    attr_accessor :max_quit, :max_term, :sleep_interval

    def initialize
      self.max_quit = 10
      self.max_term = 15
      self.sleep_interval = 1
    end
  end
end