sensu-plugins-jolokia 0.0.3 → 0.0.4

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 65c4b2649531e49d71149691e63649945ab3efe3
4
- data.tar.gz: 0e39b13024a8d2bcb5dea26291c8ab59b1037b9a
3
+ metadata.gz: 929c619e28574b0b3947ae5b989f1122c18cd708
4
+ data.tar.gz: 3abdec3057d919a9e468d602e3ed14bd0689c8e8
5
5
  SHA512:
6
- metadata.gz: e95e4b300b880aae242d93d5f121bd70a8d31ad4f64ceb65a51d8dffa6d6667a2a816e63fc6aef05eaef86e2f17584d765ba38cd0c7a54524bcf70c483216895
7
- data.tar.gz: 21a03afb78184b4c8cdc4f547e53fbd7725b04608728635f592f8444254cff207a9aa68da1f321d2a34fc3512cdd77326db752bb0274622d128c40ca684643c1
6
+ metadata.gz: 376d7e43a6552790a331ab86bc4064d69c307036ba59a595c8b858cf864c999a88205c105a00673b7e2efeb498ef89a62e689215f0a230ab0a1808b626703912
7
+ data.tar.gz: 6735aafe70a8a080449432a4d9046013776e066cd8cd012a5afe6cb8bcb1db95f8db10724b95dd5ce393bf89ed41e6dc1fe38693405299dc57a8d7ed1f8571e9
@@ -48,7 +48,7 @@ class CheckJavaAppDeploymnet < Sensu::Plugin::Check::CLI
48
48
  jolokia = Jolokia.new(url: config[:url])
49
49
 
50
50
  # Create array from apps option
51
- apps = config[:apps].split(',')
51
+ apps = config[:apps].gsub(/\s+/, '').split(',')
52
52
 
53
53
  # Empty array for app status
54
54
  apps_with_errors = []
@@ -2,7 +2,7 @@ module SensuPluginsJolokia
2
2
  module Version
3
3
  MAJOR = 0
4
4
  MINOR = 0
5
- PATCH = 3
5
+ PATCH = 4
6
6
 
7
7
  VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
8
8
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sensu-plugins-jolokia
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sensu-Plugins and contributors