fluentd 1.12.3-x86-mingw32 → 1.12.4-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of fluentd might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 975a854dbfdf16b646c33fb0b645ab4cc28c35248178739a82661a4bbc3b57c5
4
- data.tar.gz: e0d4f80dc1b9e17b7fa0a9afe71ace2ad906d739312452cf6a8c08aabd4c7893
3
+ metadata.gz: 2952a85c81b405366049c0cd0f98dbf2e0f9348d47695bcf62ba13f21ffe3574
4
+ data.tar.gz: 160491284e198cd4c948d0bc68f0b004132f609ccc66bfe6ae420d1d7660c352
5
5
  SHA512:
6
- metadata.gz: 56c4ab6d7ca1bd60847af1014296d95655c410f944d1c603daa36086a555bdb7baa1f85db9464e10d3eaaed58f1060380236102b6c63d92b8c921a81865ddacf
7
- data.tar.gz: f22e82bd8fd2bdd367b273c73abe617e610fd60c5ae463c958cba3ea47f3fdc4b6d5a7de46f4e456c51015fd7405d9c0f6cacb34c1a4924e9bc8d3fc38975942
6
+ metadata.gz: 97a299f33af0fc1e13b9f4d72559b4117933d87929d214567318338f30fd5ee406fa89e78853a8bcb3e140ebe669ce1be25a2f0fe1d7d0bf98384d2b028f6d19
7
+ data.tar.gz: d1ef6021e2247d138f109f51e99bc88ef4d2f6da2a690cbdd967c3178689e7280844b3cd2ae332185f6991eab57cef4ab49fa2f093dd6c0d08c34bc743ef13e4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # v1.12
2
2
 
3
+ ## Release v1.12.4 - 2021/05/26
4
+
5
+ ### Bug fix
6
+
7
+ * in_tail: Fix a bug that refresh_watcher fails to handle file rotations
8
+
3
9
  ## Release v1.12.3 - 2021/04/23
4
10
 
5
11
  ### Enhancement
@@ -248,6 +248,20 @@ module Fluent::Plugin
248
248
  end
249
249
  end
250
250
 
251
- TargetInfo = Struct.new(:path, :ino)
251
+ TargetInfo = Struct.new(:path, :ino) do
252
+ def ==(other)
253
+ return false unless other.is_a?(TargetInfo)
254
+ self.path == other.path
255
+ end
256
+
257
+ def hash
258
+ self.path.hash
259
+ end
260
+
261
+ def eql?(other)
262
+ return false unless other.is_a?(TargetInfo)
263
+ self.path == other.path
264
+ end
265
+ end
252
266
  end
253
267
  end
@@ -16,6 +16,6 @@
16
16
 
17
17
  module Fluent
18
18
 
19
- VERSION = '1.12.3'
19
+ VERSION = '1.12.4'
20
20
 
21
21
  end
@@ -282,4 +282,58 @@ class IntailPositionFileTest < Test::Unit::TestCase
282
282
  assert_equal 2, f.read_inode
283
283
  end
284
284
  end
285
+
286
+ sub_test_case "TargetInfo equality rules" do
287
+ sub_test_case "== operator" do
288
+ def test_equal
289
+ t1 = Fluent::Plugin::TailInput::TargetInfo.new("test", 1234)
290
+ t2 = Fluent::Plugin::TailInput::TargetInfo.new("test", 1235)
291
+
292
+ assert_equal t1, t2
293
+ end
294
+
295
+ def test_not_equal
296
+ t1 = Fluent::Plugin::TailInput::TargetInfo.new("test", 1234)
297
+ t2 = Fluent::Plugin::TailInput::TargetInfo.new("test2", 1234)
298
+
299
+ assert_not_equal t1, t2
300
+ end
301
+ end
302
+
303
+ sub_test_case "eql? method" do
304
+ def test_eql?
305
+ t1 = Fluent::Plugin::TailInput::TargetInfo.new("test", 1234)
306
+ t2 = Fluent::Plugin::TailInput::TargetInfo.new("test", 5321)
307
+
308
+ assert do
309
+ t1.eql? t2
310
+ end
311
+ end
312
+
313
+ def test_not_eql?
314
+ t1 = Fluent::Plugin::TailInput::TargetInfo.new("test2", 1234)
315
+ t2 = Fluent::Plugin::TailInput::TargetInfo.new("test3", 1234)
316
+
317
+ assert do
318
+ !t1.eql? t2
319
+ end
320
+ end
321
+ end
322
+
323
+ sub_test_case "hash" do
324
+ def test_equal
325
+ t1 = Fluent::Plugin::TailInput::TargetInfo.new("test", 1234)
326
+ t2 = Fluent::Plugin::TailInput::TargetInfo.new("test", 7321)
327
+
328
+ assert_equal t1.hash, t2.hash
329
+ end
330
+
331
+ def test_not_equal
332
+ t1 = Fluent::Plugin::TailInput::TargetInfo.new("test", 1234)
333
+ t2 = Fluent::Plugin::TailInput::TargetInfo.new("test2", 1234)
334
+
335
+ assert_not_equal t1.hash, t2.hash
336
+ end
337
+ end
338
+ end
285
339
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fluentd
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.12.3
4
+ version: 1.12.4
5
5
  platform: x86-mingw32
6
6
  authors:
7
7
  - Sadayuki Furuhashi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-04-23 00:00:00.000000000 Z
11
+ date: 2021-05-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -1022,7 +1022,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
1022
1022
  - !ruby/object:Gem::Version
1023
1023
  version: '0'
1024
1024
  requirements: []
1025
- rubygems_version: 3.1.2
1025
+ rubygems_version: 3.2.5
1026
1026
  signing_key:
1027
1027
  specification_version: 4
1028
1028
  summary: Fluentd event collector