deimos-ruby 1.0.0.pre.beta24 → 1.0.0.pre.beta25
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/CHANGELOG.md +3 -0
- data/Gemfile.lock +1 -1
- data/lib/deimos/producer.rb +6 -3
- data/lib/deimos/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: cf690c099639314ff468feb6b9f925ca74655f7738e0c3162c4c879254dc707b
|
|
4
|
+
data.tar.gz: ecad3f7d4c68a824df0a2e28431885d95b896814db40d77383c6e7a162327dd4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c077533375e21f16c3ceb9f81b5fcc5bb8c1a970c35efbf1fa95dbcef28d7f4a18eebafda136f16d98dbfae8b9c920755ac75b453a38d504e489c87bcbf9e2a1
|
|
7
|
+
data.tar.gz: 425e6caeff23223e41da507a5631a13c6cf2f4d7d3f32b8338c37f2454bb0886702069de05dcd359aa5661ebb62e474db9fd9cb54c0ae1504cfcea3c6ec220ac
|
data/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## UNRELEASED
|
|
9
9
|
|
|
10
|
+
## 1.0.0-beta25 - 2019-08-28
|
|
11
|
+
- Fix bug where crashing would cause producers to stay disabled
|
|
12
|
+
|
|
10
13
|
## 1.0.0-beta24 - 2019-08-26
|
|
11
14
|
- Reconnect DB backend if database goes away.
|
|
12
15
|
- Sleep only 5 seconds between attempts instead of using exponential backoff.
|
data/Gemfile.lock
CHANGED
data/lib/deimos/producer.rb
CHANGED
|
@@ -25,9 +25,12 @@ module Deimos
|
|
|
25
25
|
return
|
|
26
26
|
end
|
|
27
27
|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
28
|
+
begin
|
|
29
|
+
Thread.current[:frk_disable_all_producers] = true
|
|
30
|
+
yield
|
|
31
|
+
ensure
|
|
32
|
+
Thread.current[:frk_disable_all_producers] = false
|
|
33
|
+
end
|
|
31
34
|
end
|
|
32
35
|
|
|
33
36
|
# :nodoc:
|
data/lib/deimos/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: deimos-ruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.0.pre.
|
|
4
|
+
version: 1.0.0.pre.beta25
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Daniel Orner
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-08-
|
|
11
|
+
date: 2019-08-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: avro-patches
|