wavefront-sdk 1.6.1 → 1.6.2
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/HISTORY.md +3 -0
- data/lib/wavefront-sdk/base_write.rb +1 -1
- data/lib/wavefront-sdk/version.rb +1 -1
- data/lib/wavefront-sdk/write.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3a51f123acf9e28be6fde5916a80976858fe958f13cb7bfd2d1be6b97b201dde
|
4
|
+
data.tar.gz: 2aa03e1e185c801dda9d56f9643578ba2f9692973f0bbab4dd728b93cdb44fee
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6b8921cec2fdf37e6451605d76895d2f538a04128c6e6217e28be58e7e0387cc95c74a37abc21f71f07bf87051ed587b0e2f10e33b703bc7c028085c383e8383
|
7
|
+
data.tar.gz: 6a83ce8d88d17b4a494579bbf8a9602581a4684eeb8c29458710cba2a9d5797c693e36738c79cb852098494b7c4e9c6360158147aac6664460e826b27603e758
|
data/HISTORY.md
CHANGED
@@ -1 +1 @@
|
|
1
|
-
WF_SDK_VERSION = '1.6.
|
1
|
+
WF_SDK_VERSION = '1.6.2'.freeze
|
data/lib/wavefront-sdk/write.rb
CHANGED
@@ -33,7 +33,7 @@ module Wavefront
|
|
33
33
|
end
|
34
34
|
|
35
35
|
port = net[:port] || 2878
|
36
|
-
log("Connecting to #{net[:proxy]}:#{port}.", :
|
36
|
+
log("Connecting to #{net[:proxy]}:#{port}.", :debug)
|
37
37
|
|
38
38
|
begin
|
39
39
|
@sock = TCPSocket.new(net[:proxy], port)
|
@@ -47,7 +47,7 @@ module Wavefront
|
|
47
47
|
#
|
48
48
|
def close
|
49
49
|
return if opts[:noop]
|
50
|
-
log('Closing connection to proxy.', :
|
50
|
+
log('Closing connection to proxy.', :debug)
|
51
51
|
sock.close
|
52
52
|
end
|
53
53
|
|