libhoney 1.19.0 → 1.20.0
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 +5 -1
- data/CONTRIBUTORS +1 -0
- data/lib/libhoney/transmission.rb +3 -0
- data/lib/libhoney/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: 20e7e4496ff85fa667c3ddfe5d0c61361a645a7e4d6fc8465e04e16c3c07a4a1
|
|
4
|
+
data.tar.gz: bf9f628b1bd052a6dab3132c0b4626237eff10bf7334177c88478201c3d9a1d4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 37955fccffbbec485f391f738cb64829338404becd2507fd89c684377d3261f5b1deb010eaca8de160792cb32ff29d9ce637f731efc9f1c0d75067502641da37
|
|
7
|
+
data.tar.gz: 0a2fa105907286cc22af13af4dcd416a8c1effd4b7fafe591af2185db1f0a4bc34c39a41f188dd2024c283ef9ac848347c212c1631a7d645a37c603cce79919d
|
data/CHANGELOG.md
CHANGED
data/CONTRIBUTORS
CHANGED
|
@@ -172,6 +172,9 @@ module Libhoney
|
|
|
172
172
|
# 4. flushes the current batch
|
|
173
173
|
# 5. ends the batch_loop
|
|
174
174
|
break
|
|
175
|
+
rescue Timeout::Error
|
|
176
|
+
# Timeout::Error happens when there is nothing to pop from the batch_queue.
|
|
177
|
+
# We rescue it here to avoid spamming the logs with "execution expired" errors.
|
|
175
178
|
rescue Exception => e
|
|
176
179
|
warn "#{self.class.name}: 💥 " + e.message if %w[debug trace].include?(ENV['LOG_LEVEL'])
|
|
177
180
|
warn e.backtrace.join("\n").to_s if ['trace'].include?(ENV['LOG_LEVEL'])
|
data/lib/libhoney/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: libhoney
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.20.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- The Honeycomb.io Team
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-08-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bump
|