From d09be5f131b1ba39339187ac8b90178c31c7e25a Mon Sep 17 00:00:00 2001 From: Dan Milne Date: Wed, 10 Aug 2022 11:52:18 +1000 Subject: [PATCH] Migrate to just HTTP --- lib/paapi/client.rb | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/lib/paapi/client.rb b/lib/paapi/client.rb index 4de3455..e398026 100644 --- a/lib/paapi/client.rb +++ b/lib/paapi/client.rb @@ -1,6 +1,5 @@ require 'net/http' require 'aws-sigv4' -require 'byebug' module Paapi class Client @@ -25,15 +24,7 @@ module Paapi @condition = condition self.market = market @partner_tag = partner_tag if !partner_tag.nil? - - byebug - #if defined?(HTTPX) - # @http = HTTPX.plugin(:persistent) - #elsif defined?(HTTP) - @http = HTTP::Client.new - #else - # @http = nil - #end + @http = HTTP::Client.new end def market=(a_market)