diff options
author | ytti <saku@ytti.fi> | 2018-04-20 15:08:31 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-20 15:08:31 +0300 |
commit | d53e044088147cff2a3b17910593e6abc251d926 (patch) | |
tree | 35ae90f7393f90c4e2b1807203eff5417561ce6e | |
parent | 98abfe0898eec036b2d2f48bc96307346ac29161 (diff) | |
parent | 1b66348be97d4603566a262756d6ad5a2d21bd58 (diff) |
Merge pull request #1291 from wk/refactor-awssns
restructure awssns.rb to comply with rubocop
-rw-r--r-- | .rubocop_todo.yml | 2 | ||||
-rw-r--r-- | lib/oxidized/hook/awssns.rb | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml index 55642fc..a56def7 100644 --- a/.rubocop_todo.yml +++ b/.rubocop_todo.yml @@ -204,7 +204,6 @@ Layout/FirstParameterIndentation: # SupportedStyles: special_inside_parentheses, consistent, align_braces Layout/IndentHash: Exclude: - - 'lib/oxidized/hook/awssns.rb' - 'lib/oxidized/hook/githubrepo.rb' - 'lib/oxidized/input/ssh.rb' - 'lib/oxidized/output/http.rb' @@ -676,7 +675,6 @@ Style/BlockDelimiters: # SupportedStyles: braces, no_braces, context_dependent Style/BracesAroundHashParameters: Exclude: - - 'lib/oxidized/hook/awssns.rb' - 'lib/oxidized/hook/githubrepo.rb' - 'lib/oxidized/input/telnet.rb' - 'lib/oxidized/model/procurve.rb' diff --git a/lib/oxidized/hook/awssns.rb b/lib/oxidized/hook/awssns.rb index dbc2d47..82c118e 100644 --- a/lib/oxidized/hook/awssns.rb +++ b/lib/oxidized/hook/awssns.rb @@ -19,9 +19,9 @@ class AwsSns < Oxidized::Hook :node => ctx.node.name.to_s ) end - topic.publish({ + topic.publish( message: message.to_json - }) + ) end end |