From 1b167080f469f36a76512dd3fb45389e1b2578f3 Mon Sep 17 00:00:00 2001 From: Jared Norman Date: Sun, 24 Mar 2019 11:49:16 -0700 Subject: Remove cache key hack This never actually worked as expected. While imperfect, use the order params directly will produce better results. --- lib/super_good/solidus_taxjar.rb | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'lib/super_good/solidus_taxjar.rb') diff --git a/lib/super_good/solidus_taxjar.rb b/lib/super_good/solidus_taxjar.rb index ba4ff48..4e7d9c5 100644 --- a/lib/super_good/solidus_taxjar.rb +++ b/lib/super_good/solidus_taxjar.rb @@ -22,15 +22,7 @@ module SuperGood end self.cache_duration = 3.hours - self.cache_key = ->(order) { - APIParams.order_params(order).transform_values do |value| - case value - when Array, Hash then value.hash - else - value - end - end - } + self.cache_key = ->(order) { APIParams.order_params(order) } self.discount_calculator = ::SuperGood::SolidusTaxJar::DiscountCalculator self.exception_handler = ->(e) { Rails.logger.error "An error occurred while fetching TaxJar tax rates - #{e}: #{e.message}" -- cgit v1.2.3