From d2347925dbcd573292d56f8eef97f1e2db31453d Mon Sep 17 00:00:00 2001 From: JT Archie Date: Mon, 31 Jul 2017 20:52:53 -0600 Subject: [PATCH] do not share the cache --- assets/lib/commands/base.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/lib/commands/base.rb b/assets/lib/commands/base.rb index 66873e8..3affe17 100644 --- a/assets/lib/commands/base.rb +++ b/assets/lib/commands/base.rb @@ -6,7 +6,7 @@ stack = Faraday::RackBuilder.new do |builder| storer = ActiveSupport::Cache::FileStore.new('/tmp', namespace: 'pullrequest') - builder.use Faraday::HttpCache, store: storer, serializer: Marshal, shared_cache: true + builder.use Faraday::HttpCache, store: storer, serializer: Marshal, shared_cache: false builder.use Octokit::Response::RaiseError # httpclient and excon are the only Faraday adpater which support # the no_proxy environment variable atm