aws-xray 0.16.0 → 0.16.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: cb65c48a877e87915776fa765ab77e7274287d1a
4
- data.tar.gz: 5522ae2e4792cae8c313021d1705237d3734ad23
3
+ metadata.gz: 48c003ef91384dc1bd947ad31570ed0eb62d3a4b
4
+ data.tar.gz: cd71f1c2e020066aad941cc4e984a7d934483a74
5
5
  SHA512:
6
- metadata.gz: a76f973fa970b3b29dd4d4755ac103fefe15905d235ee5cd231682d4bbc3d8dee3fef70e3a619a896daf45561f870f63805e1a50ca194c434e21415c74640f61
7
- data.tar.gz: 8cd98e3d5d76249fd18aec23a6f883046cfd130813c68c35c09f2d3cc4b87b49285e5641746b04bd618c2aa20a49785cc5d027c154d21c40bbd9dd6b56dca681
6
+ metadata.gz: c21f7a054689d984a00414068bb11440493dbe55e72853d2f4ba85d656c61b54de0eb73b25a191e94ca2e6499c8482c9bb2e184b36f8eac87bbb75d031fc95a2
7
+ data.tar.gz: 62606b9dab33242e795a8aca09739cb35a80b57f2450225ecc7e7cbb553b870bba53c37cb18011bd229c93ecca736dca685d356ae715eaf95bd5200e709db8c2
@@ -7,8 +7,8 @@ module Aws
7
7
  NAME_HEADER = 'X-Aws-Xray-Name'.freeze
8
8
 
9
9
  def request_with_aws_xray(req, *args, &block)
10
- return request_without_aws_xray(req, *args) unless Context.started?
11
- return request_without_aws_xray(req, *args) if Context.current.disabled?(:net_http)
10
+ return request_without_aws_xray(req, *args, &block) unless Context.started?
11
+ return request_without_aws_xray(req, *args, &block) if Context.current.disabled?(:net_http)
12
12
 
13
13
  uri = URI('')
14
14
  uri.scheme = use_ssl? ? 'https' : 'http'
@@ -1,5 +1,5 @@
1
1
  module Aws
2
2
  module Xray
3
- VERSION = '0.16.0'
3
+ VERSION = '0.16.1'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-xray
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.16.0
4
+ version: 0.16.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Taiki Ono