Skip to content

Commit 35183b5

Browse files
committed
Merge branch 'master' into develop
2 parents c66b6df + 9981333 commit 35183b5

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

bin/check-trello-incidents.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,9 @@ def check_list(host, port, key, token, list)
9191
raise format('Invalid value for list parameter: %<list>s', list: list)
9292
end
9393

94-
path = format('/1/lists/%<list>s/cards/', list: list)
94+
path = format('/1/lists/%<list>s/cards', list: list)
9595

96-
uri = URI.parse(format('https://%<host>s:%<port>d/%<path>s',
96+
uri = URI.parse(format('https://%<host>s:%<port>d%<path>s',
9797
host: host, port: port, path: path))
9898
params = { key: key, token: token }
9999
uri.query = URI.encode_www_form(params)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
module Sensu
22
module Plugins
33
module Trello
4-
VERSION = '0.2.1'.freeze
4+
VERSION = '0.2.2'.freeze
55
end
66
end
77
end

0 commit comments

Comments
 (0)