Sha256: 76b35641677d52e80587797f056992cbe0cd636f0273809cb66985b323031036

Contents?: true

Size: 424 Bytes

Versions: 2

Compression:

Stored size: 424 Bytes

Contents

module Oxidized
  class PromptUndetect < OxidizedError; end

  class Input
    include Oxidized::Config::Vars

    RescueFail = {
      debug: [
        Errno::ECONNREFUSED
      ],
      warn:  [
        IOError,
        PromptUndetect,
        Timeout::Error,
        Errno::ECONNRESET,
        Errno::EHOSTUNREACH,
        Errno::ENETUNREACH,
        Errno::EPIPE,
        Errno::ETIMEDOUT
      ]
    }.freeze
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
oxidized-0.29.1 lib/oxidized/input/input.rb
oxidized-0.29.0 lib/oxidized/input/input.rb