semian 0.11.2 → 0.11.3
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 +4 -4
- data/lib/semian.rb +2 -1
- data/lib/semian/circuit_breaker.rb +4 -0
- data/lib/semian/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b867496c18269ed172e3d5644e6534b043a7441c34a3ec4a619534a28b03f11d
|
|
4
|
+
data.tar.gz: '09819744aa4b11f204a275ee594da9bf3e0d3b66a568ae7aef6d40e6605d5f0d'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5b0599ce2ebc8c86212f455b3383cdb2307015d84af592e8ce6971d60da57886706a02745121bd0df3249342d5ac6113ab87bc6bcebea2391dd594b2001767b6
|
|
7
|
+
data.tar.gz: 7432a79d19cc7583f6152355e851922faa19668349f05ff52e78f78cab245079d2f3da964b8dc162522b98f88391971adafcf8baee3559edaddfcc6da8e1bd39
|
data/lib/semian.rb
CHANGED
|
@@ -143,7 +143,8 @@ module Semian
|
|
|
143
143
|
#
|
|
144
144
|
# +timeout+: Default timeout in seconds. Default 0. (bulkhead)
|
|
145
145
|
#
|
|
146
|
-
# +error_threshold+: The
|
|
146
|
+
# +error_threshold+: The amount of errors that must happen within error_timeout amount of time to open
|
|
147
|
+
# the circuit. (circuit breaker required)
|
|
147
148
|
#
|
|
148
149
|
# +error_timeout+: The duration in seconds since the last error after which the error count is reset to 0.
|
|
149
150
|
# (circuit breaker required)
|
|
@@ -136,6 +136,10 @@ module Semian
|
|
|
136
136
|
str << " success_count_threshold=#{@success_count_threshold} error_count_threshold=#{@error_count_threshold}"
|
|
137
137
|
str << " error_timeout=#{@error_timeout} error_last_at=\"#{@errors.last}\""
|
|
138
138
|
str << " name=\"#{@name}\""
|
|
139
|
+
if new_state == :open && @last_error
|
|
140
|
+
str << " last_error_message=#{@last_error.message.inspect}"
|
|
141
|
+
end
|
|
142
|
+
|
|
139
143
|
Semian.logger.info(str)
|
|
140
144
|
end
|
|
141
145
|
|
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.11.
|
|
4
|
+
version: 0.11.3
|
|
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: 2021-
|
|
13
|
+
date: 2021-02-02 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: rake-compiler
|