semian 0.8.5 → 0.8.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/lib/semian/circuit_breaker.rb +3 -1
- data/lib/semian/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: f54c9a772d41a2fdd6f473179c1c6831ed4eaf3c5b2573977678d3410a36aabb
|
|
4
|
+
data.tar.gz: c3ac9d744cc2a66bebb296effa617f55e0daa53c0e31c00108e98bb35ae97548
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 538844cf209bc1049afb14d14868f8e09555fbc5ac4bcea774435663d750962b3ee440e0e9b9794271d8954fb89c05f7e2b4207410c0e94e79c6a693c7e9593a
|
|
7
|
+
data.tar.gz: 34e6ee0104454867198e59d21168f4748ced62d4e5b06c5a4b211c5513b1e60f48780d31dd77a55ec5e16f0aef47af3de72036f775a2e6b9708a33f584043b4c
|
|
@@ -29,7 +29,9 @@ module Semian
|
|
|
29
29
|
begin
|
|
30
30
|
result = maybe_with_half_open_resource_timeout(resource, &block)
|
|
31
31
|
rescue *@exceptions => error
|
|
32
|
-
|
|
32
|
+
if !error.respond_to?(:marks_semian_circuits?) || error.marks_semian_circuits?
|
|
33
|
+
mark_failed(error)
|
|
34
|
+
end
|
|
33
35
|
raise error
|
|
34
36
|
else
|
|
35
37
|
mark_success
|
data/lib/semian/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: semian
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.
|
|
4
|
+
version: 0.8.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Scott Francis
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2018-
|
|
13
|
+
date: 2018-12-17 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: rake-compiler
|
|
@@ -116,14 +116,14 @@ dependencies:
|
|
|
116
116
|
requirements:
|
|
117
117
|
- - "~>"
|
|
118
118
|
- !ruby/object:Gem::Version
|
|
119
|
-
version: 1.
|
|
119
|
+
version: 1.7.2
|
|
120
120
|
type: :development
|
|
121
121
|
prerelease: false
|
|
122
122
|
version_requirements: !ruby/object:Gem::Requirement
|
|
123
123
|
requirements:
|
|
124
124
|
- - "~>"
|
|
125
125
|
- !ruby/object:Gem::Version
|
|
126
|
-
version: 1.
|
|
126
|
+
version: 1.7.2
|
|
127
127
|
- !ruby/object:Gem::Dependency
|
|
128
128
|
name: toxiproxy
|
|
129
129
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -193,7 +193,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
193
193
|
version: '0'
|
|
194
194
|
requirements: []
|
|
195
195
|
rubyforge_project:
|
|
196
|
-
rubygems_version: 2.6
|
|
196
|
+
rubygems_version: 2.7.6
|
|
197
197
|
signing_key:
|
|
198
198
|
specification_version: 4
|
|
199
199
|
summary: Bulkheading for Ruby with SysV semaphores
|