excon 0.0.13 → 0.0.14

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of excon might be problematic. Click here for more details.

data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.13
1
+ 0.0.14
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{excon}
8
- s.version = "0.0.13"
8
+ s.version = "0.0.14"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Wesley Beary"]
12
- s.date = %q{2009-12-11}
12
+ s.date = %q{2010-01-04}
13
13
  s.description = %q{speed, persistence, http(s)}
14
14
  s.email = %q{wbeary@engineyard.com}
15
15
  s.extra_rdoc_files = [
@@ -5,6 +5,7 @@ unless Excon.mocking?
5
5
 
6
6
  def initialize(url)
7
7
  @uri = URI.parse(url)
8
+ Thread.current[:_excon_connections] ||= {}
8
9
  end
9
10
 
10
11
  def request(params)
@@ -76,16 +77,16 @@ unless Excon.mocking?
76
77
  end
77
78
  elsif response.headers['Connection'] == 'close'
78
79
  block.call(connection.read)
79
- Thread.current[:_excon_connection] = nil
80
+ Thread.current[:_excon_connections][@uri.to_s] = nil
80
81
  end
81
82
  end
82
83
  rescue => connection_error
83
- Thread.current[:_excon_connection] = nil
84
+ Thread.current[:_excon_connections][@uri.to_s] = nil
84
85
  raise(connection_error)
85
86
  end
86
87
 
87
88
  if params[:expects] && ![*params[:expects]].include?(response.status)
88
- Thread.current[:_excon_connection] = nil
89
+ Thread.current[:_excon_connections][@uri.to_s] = nil
89
90
  raise(Excon::Errors.status_error(params, response))
90
91
  else
91
92
  response
@@ -107,10 +108,10 @@ unless Excon.mocking?
107
108
  private
108
109
 
109
110
  def connection
110
- if !Thread.current[:_excon_connection] || Thread.current[:_excon_connection].closed?
111
- Thread.current[:_excon_connection] = establish_connection
111
+ if !Thread.current[:_excon_connections][@uri.to_s] || Thread.current[:_excon_connections][@uri.to_s].closed?
112
+ Thread.current[:_excon_connections][@uri.to_s] = establish_connection
112
113
  end
113
- Thread.current[:_excon_connection]
114
+ Thread.current[:_excon_connections][@uri.to_s]
114
115
  end
115
116
 
116
117
  def establish_connection
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: excon
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.13
4
+ version: 0.0.14
5
5
  platform: ruby
6
6
  authors:
7
7
  - Wesley Beary
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-12-11 00:00:00 -08:00
12
+ date: 2010-01-04 00:00:00 -08:00
13
13
  default_executable:
14
14
  dependencies: []
15
15