logstash-core 2.3.0.snapshot1-java → 2.3.0.snapshot3-java

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.

Potentially problematic release.


This version of logstash-core might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: db314d9bebc87bf6a9203e320377764a3ab011bc
4
- data.tar.gz: 797395972678c8ee47192883e136d1d193101ef5
3
+ metadata.gz: 75d090462d8c05728226be1cff308e149ae54e27
4
+ data.tar.gz: 322a66722d833de679b086e946bb01a7d9168966
5
5
  SHA512:
6
- metadata.gz: 89ca9cc109f45cc11b504a5665788e70ab1095cb09b524c2913a00520f342f80f2e5c694bbacba600999243cd7ee58ac11c5f99b21dbd431027cfe3d5d89fe8d
7
- data.tar.gz: e65017e541709fb2d0f4e2bbb7978b5ea3e3b43787b338a3e720c39a5afefe9111db63ef612e0be687d2b7aad83e91d440bd93dbdae293fa8cd3aead22661df1
6
+ metadata.gz: b28f06d3063faa64d8526298319c0c5f12f2ceaf0aef7071360d3011718c4c62acbc8bde2d80a6a5e8418e0c7b23138c52223f691c8fcf8e9d091632ec79dd31
7
+ data.tar.gz: 443aa26815d0ca0e0d9199b622934dcba1e98bb0fb24e55dfbd79746d40024c913a0be424028ad203f639075cd68a609c726a112489302928512d10f11154aad
@@ -5,4 +5,4 @@
5
5
  # Note to authors: this should not include dashes because 'gem' barfs if
6
6
  # you include a dash in the version string.
7
7
 
8
- LOGSTASH_CORE_VERSION = "2.3.0.snapshot1"
8
+ LOGSTASH_CORE_VERSION = "2.3.0.snapshot3"
@@ -11,4 +11,4 @@
11
11
  # eventually this file should be in the root logstash lib fir and dependencies in logstash-core should be
12
12
  # fixed.
13
13
 
14
- LOGSTASH_VERSION = "2.3.0.snapshot1"
14
+ LOGSTASH_VERSION = "2.3.0.snapshot3"
@@ -169,6 +169,9 @@ en:
169
169
  Monitor configuration changes and reload
170
170
  whenever it is changed.
171
171
  NOTE: use SIGHUP to manually reload the config
172
+ reload_interval: |+
173
+ How frequently to poll the configuration location
174
+ for changes, in seconds.
172
175
  log: |+
173
176
  Write logstash internal logs to the given
174
177
  file. Without this flag, logstash will emit
@@ -17,7 +17,7 @@ Gem::Specification.new do |gem|
17
17
  gem.require_paths = ["lib"]
18
18
  gem.version = LOGSTASH_CORE_VERSION
19
19
 
20
- gem.add_runtime_dependency "logstash-core-event-java", "2.3.0.snapshot1"
20
+ gem.add_runtime_dependency "logstash-core-event-java", "2.3.0.snapshot3"
21
21
 
22
22
  gem.add_runtime_dependency "cabin", "~> 0.8.0" #(Apache 2.0 license)
23
23
  gem.add_runtime_dependency "pry", "~> 0.10.1" #(Ruby license)
@@ -70,12 +70,12 @@ describe LogStash::Agent do
70
70
 
71
71
  context "when auto_reload is true" do
72
72
  let(:agent_args) { [ "--auto-reload", "--config", config_file] } #reload_interval => 0.01, :config_path => } }
73
- #let(:agent_args) { { :logger => logger, :auto_reload => false, :reload_interval => 0.01, :config_path => config_file } }
74
73
  context "if state is clean" do
75
74
  it "should periodically reload_state" do
76
- allow(subject).to receive(:clean_state?).and_return(false)
77
75
  expect(subject).to receive(:reload_state!).at_least(3).times
78
- t = Thread.new { subject.execute }
76
+ t = Thread.new(subject) {|subject| subject.execute }
77
+ sleep 0.01 until (subject.running_pipelines? && subject.pipelines.values.first.ready?)
78
+ # now that the pipeline has started, give time for reload_state! to happen a few times
79
79
  sleep 0.1
80
80
  Stud.stop!(t)
81
81
  t.join
metadata CHANGED
@@ -1,21 +1,21 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.0.snapshot1
4
+ version: 2.3.0.snapshot3
5
5
  platform: java
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-03-10 00:00:00.000000000 Z
11
+ date: 2016-03-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
15
15
  requirements:
16
16
  - - '='
17
17
  - !ruby/object:Gem::Version
18
- version: 2.3.0.snapshot1
18
+ version: 2.3.0.snapshot3
19
19
  name: logstash-core-event-java
20
20
  prerelease: false
21
21
  type: :runtime
@@ -23,7 +23,7 @@ dependencies:
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 2.3.0.snapshot1
26
+ version: 2.3.0.snapshot3
27
27
  - !ruby/object:Gem::Dependency
28
28
  requirement: !ruby/object:Gem::Requirement
29
29
  requirements:
@@ -331,7 +331,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
331
331
  version: 1.3.1
332
332
  requirements: []
333
333
  rubyforge_project:
334
- rubygems_version: 2.4.5
334
+ rubygems_version: 2.4.8
335
335
  signing_key:
336
336
  specification_version: 4
337
337
  summary: logstash-core - The core components of logstash