Skip to content

Commit

Permalink
removed cache busting for mobile rx
Browse files Browse the repository at this point in the history
  • Loading branch information
agravell047 committed Mar 26, 2024
1 parent 6675535 commit 95cf36a
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions lib/rx/client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ class Client < Common::Client::Base
client_session Rx::ClientSession

CACHE_TTL = 3600 * 1 # 1 hour cache
CACHE_TTL_ZERO = 0

def request(method, path, params = {}, headers = {}, options = {})
super(method, path, params, headers, options)
Expand All @@ -31,7 +32,7 @@ def request(method, path, params = {}, headers = {}, options = {})
# @return [Common::Collection[Prescription]]
#
def get_active_rxs
Common::Collection.fetch(::Prescription, cache_key: cache_key('getactiverx'), ttl: CACHE_TTL) do
Common::Collection.fetch(::Prescription, cache_key: cache_key('getactiverx'), ttl: CACHE_TTL_ZERO) do
perform(:get, 'prescription/getactiverx', nil, token_headers).body
end
end
Expand All @@ -53,7 +54,7 @@ def get_active_rxs_with_details
# @return [Common::Collection[Prescription]]
#
def get_history_rxs
Common::Collection.fetch(::Prescription, cache_key: cache_key('gethistoryrx'), ttl: CACHE_TTL) do
Common::Collection.fetch(::Prescription, cache_key: cache_key('gethistoryrx'), ttl: CACHE_TTL_ZERO) do
perform(:get, 'prescription/gethistoryrx', nil, token_headers).body
end
end
Expand Down Expand Up @@ -123,10 +124,7 @@ def get_tracking_history_rx(id)
# @return [Faraday::Env]
#
def post_refill_rxs(ids)
if (result = perform(:post, 'prescription/rxrefill', ids, token_headers))
Common::Collection.bust([cache_key('getactiverx'), cache_key('gethistoryrx')])
end
result
perform(:post, 'prescription/rxrefill', ids, token_headers)
end

##
Expand Down

0 comments on commit 95cf36a

Please sign in to comment.