remix-stash 1.0.2 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/lib/remix/stash/cluster.rb +0 -2
- data/remix-stash.gemspec +3 -2
- data/spec/runtime_spec.rb +0 -0
- metadata +3 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.3
|
data/lib/remix/stash/cluster.rb
CHANGED
@@ -26,11 +26,9 @@ class Remix::Stash::Cluster
|
|
26
26
|
io.close
|
27
27
|
retry
|
28
28
|
rescue Errno::EAGAIN
|
29
|
-
logger.error("[stash] Cluster socket timeout on #{@hosts[(hash + try) % count][0]}")
|
30
29
|
io.close
|
31
30
|
next
|
32
31
|
rescue Errno::ECONNREFUSED
|
33
|
-
logger.error("[stash] Cluster connection refused on #{@hosts[(hash + try) % count][0]}")
|
34
32
|
next
|
35
33
|
end
|
36
34
|
end
|
data/remix-stash.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{remix-stash}
|
8
|
-
s.version = "1.0.
|
8
|
+
s.version = "1.0.3"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Brian Mitchell"]
|
12
|
-
s.date = %q{2009-10-
|
12
|
+
s.date = %q{2009-10-11}
|
13
13
|
s.email = %q{binary42@gmail.com}
|
14
14
|
s.extra_rdoc_files = [
|
15
15
|
"LICENSE",
|
@@ -97,6 +97,7 @@ Gem::Specification.new do |s|
|
|
97
97
|
s.test_files = [
|
98
98
|
"spec/auto_detection_spec.rb",
|
99
99
|
"spec/extension_spec.rb",
|
100
|
+
"spec/runtime_spec.rb",
|
100
101
|
"spec/spec.rb",
|
101
102
|
"spec/stash_spec.rb",
|
102
103
|
"spec/support/bar.rb",
|
File without changes
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: remix-stash
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brian Mitchell
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-10-
|
12
|
+
date: 2009-10-11 00:00:00 -04:00
|
13
13
|
default_executable:
|
14
14
|
dependencies: []
|
15
15
|
|
@@ -123,6 +123,7 @@ summary: Remix your memcache
|
|
123
123
|
test_files:
|
124
124
|
- spec/auto_detection_spec.rb
|
125
125
|
- spec/extension_spec.rb
|
126
|
+
- spec/runtime_spec.rb
|
126
127
|
- spec/spec.rb
|
127
128
|
- spec/stash_spec.rb
|
128
129
|
- spec/support/bar.rb
|