sensu-plugins-amqp-checks 0.0.2 → 0.0.3

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
  SHA1:
3
- metadata.gz: 4a0f054b8c1a66bbd7c15346733e0f041090d198
4
- data.tar.gz: daf998034eff04cd5b7b3bfc2b6fb5826bfb2fb7
3
+ metadata.gz: 060172a993e729df01a5ac433534937d8ca531f3
4
+ data.tar.gz: ef88c83ceaa07f080360f6d32213f90b476f7e2c
5
5
  SHA512:
6
- metadata.gz: c20d8c2711fb56758ae9942826ebe9bab0e2c9d316d76f4451a606d1cb52725a2062b053019d8a4ba5a1d206c70a975577e772bc47a5af4b01d1c2eb52f42543
7
- data.tar.gz: b6c61f8b5ede04b20f7b35eeac938f041ab4b6295fb48432f813543f5a6cfae701869849fcf3a21776a37eaaf663ccdd6d7910c4819af8e4ffa617d2943700ce
6
+ metadata.gz: 80f8cd67e55c983bc58449d7835aa612b39ac5cddfab8232d71c0e305f09900047cb4dfecd56083fa277db5ab6d509000e17d5549ee34fcc5869041065a09814
7
+ data.tar.gz: 9e7c9f838609f8b76a5ad93a0eb9585d001e26477a03339505fd5260c63e77b02a5a5515e2b84f34a1bc81786d3c4ca05065b8d13463cb760f89ca196e537b62
data/CHANGELOG.md CHANGED
@@ -5,6 +5,10 @@ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachang
5
5
 
6
6
  ## [Unreleased]
7
7
 
8
+ ## 0.0.3 - 2016-11-18
9
+ ### Fixed
10
+ - Fixed password input option. Previously it had the wrong variable name on AQMP connect string.
11
+
8
12
  ## 0.0.2 - 2016-11-18
9
13
  ### Fixed
10
14
  - Fixed input option for queue and descriptions
@@ -61,7 +61,7 @@ class CheckAMQPStatus < Sensu::Plugin::Check::CLI
61
61
  default: 'status'
62
62
 
63
63
  def connect
64
- conn = Bunny.new("amqp://#{config[:user]}:#{config[:pass]}@#{config[:host]}:#{config[:port]}#{config[:vhost]}")
64
+ conn = Bunny.new("amqp://#{config[:user]}:#{config[:password]}@#{config[:host]}:#{config[:port]}#{config[:vhost]}")
65
65
  conn.start
66
66
  end
67
67
 
@@ -2,7 +2,7 @@ module SensuPluginsAMQPChecks
2
2
  module Version
3
3
  MAJOR = 0
4
4
  MINOR = 0
5
- PATCH = 2
5
+ PATCH = 3
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-amqp-checks
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Scott Brimhall