test-opensearch 0.0.0.6 → 0.0.0.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: aa673ebc53c796e5a252d1233467baaa43b008012e81dfc23868e99577da7c4d
4
- data.tar.gz: e829229526efec02e22ab4085dccbea383e5f52de391e27c3e4efca90d1320fe
3
+ metadata.gz: 688aae5c5812b999d341b2bb6bc638640185055a03e9f1397c9e9ee158fa545c
4
+ data.tar.gz: 607a8ce7bb14099d99e72f530227757e1b829d4931fe18fb0a62e34a6c1018f7
5
5
  SHA512:
6
- metadata.gz: da2839cc17c1e05eeea453ce7aaca64a7c55c05020db3461b6cfbe00a0df17fb4448824d9d8e2211aaf1fcdd6c08377f33425b2ceb0d3131af2877e7e8c9df6f
7
- data.tar.gz: 1420695eeac03116e00e23ea35f5167bca923a6b50ee377e6e1870dfc8657edc41b135e52b5a0dbfc2f2bf5d6094a56a9b572e9c5a0001e154ffbc178e214e3f
6
+ metadata.gz: aa4dddc8538705d0ac83d4c11110281a40ac3bbbbd8af5c4bbbe07883f2e88b6d62f5789b60f768505175a305ed10dbf7a674cbe70c36eef45b9f474ad0d8469
7
+ data.tar.gz: 15eb1b0ca1f298ce932ddcb8e982fb59b75ad565afead9073ea765dea43bab5e450484a077629bff67b9c052924b8eb99ed4cb23bc5c90772364a84c4c707b53
@@ -3,7 +3,7 @@ $:.push File.expand_path('../lib', __FILE__)
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = 'test-opensearch'
6
- s.version = '0.0.0.6'
6
+ s.version = '0.0.0.7'
7
7
  s.authors = ['Oleh']
8
8
  s.email = ['imcotop@icloud.com']
9
9
  s.description = %q{test}
@@ -87,14 +87,14 @@ module Fluent::Plugin
87
87
  # 72hours == 17 times with exponential backoff (not to change default behavior)
88
88
  config_param :retry_max_times, :integer, default: 5, desc: 'The maximum number of times to retry to flush while failing.'
89
89
  # exponential backoff sequence will be initialized at the time of this threshold
90
- config_param :retry_type, :enum, list: [:exponential_backoff, :periodic], default: :periodic
90
+ config_param :retry_type, :enum, list: [:exponential_backoff, :periodic], default: :exponential_backoff
91
91
  ### Periodic -> fixed :retry_wait
92
92
  ### Exponential backoff: k is number of retry times
93
93
  # c: constant factor, @retry_wait
94
94
  # b: base factor, @retry_exponential_backoff_base
95
95
  # k: times
96
96
  # total retry time: c + c * b^1 + (...) + c*b^k = c*b^(k+1) - 1
97
- config_param :retry_wait, :time, default: 10, desc: 'Seconds to wait before next retry to flush, or constant factor of exponential backoff.'
97
+ config_param :retry_wait, :time, default: 1, desc: 'Seconds to wait before next retry to flush, or constant factor of exponential backoff.'
98
98
  config_param :retry_exponential_backoff_base, :float, default: 2, desc: 'The base number of exponential backoff for retries.'
99
99
  config_param :retry_max_interval, :time, default: nil, desc: 'The maximum interval seconds for exponential backoff between retries while failing.'
100
100
  config_param :retry_randomize, :bool, default: false, desc: 'If true, output plugin will retry after randomized interval not to do burst retries.'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: test-opensearch
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.0.6
4
+ version: 0.0.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Oleh