memcache-client 1.7.3 → 1.7.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/History.rdoc +4 -0
  2. data/lib/memcache.rb +2 -2
  3. metadata +2 -2
data/History.rdoc CHANGED
@@ -1,3 +1,7 @@
1
+ = 1.7.4 (2009-06-09)
2
+
3
+ * Fix issue with raising timeout errors.
4
+
1
5
  = 1.7.3 (2009-06-06)
2
6
 
3
7
  * Remove SystemTimer support, refactor I/O to use nonblocking operations. Speeds up
data/lib/memcache.rb CHANGED
@@ -15,7 +15,7 @@ class MemCache
15
15
  ##
16
16
  # The version of MemCache you are using.
17
17
 
18
- VERSION = '1.7.3'
18
+ VERSION = '1.7.4'
19
19
 
20
20
  ##
21
21
  # Default options for the cache object.
@@ -1050,7 +1050,7 @@ class MemCache
1050
1050
  if IO.select([@io], nil, nil, @read_timeout)
1051
1051
  retry
1052
1052
  else
1053
- raise Timeout::Error
1053
+ raise Timeout::Error, 'IO timeout'
1054
1054
  end
1055
1055
  end
1056
1056
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: memcache-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.7.3
4
+ version: 1.7.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Hodel
@@ -11,7 +11,7 @@ autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
13
 
14
- date: 2009-06-06 00:00:00 -05:00
14
+ date: 2009-06-09 00:00:00 -05:00
15
15
  default_executable:
16
16
  dependencies: []
17
17