parse_env_value

in lib/aws/active_job/sqs/configuration.rb [250:256]


        def parse_env_value(key)
          val = ENV.fetch(key, nil)
          Integer(val)
        rescue ArgumentError, TypeError
          %w[true false].include?(val) ? val == 'true' : val
        end