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 /lib/oxidized/hook | |
parent | 98abfe0898eec036b2d2f48bc96307346ac29161 (diff) | |
parent | 1b66348be97d4603566a262756d6ad5a2d21bd58 (diff) |
Merge pull request #1291 from wk/refactor-awssns
restructure awssns.rb to comply with rubocop
Diffstat (limited to 'lib/oxidized/hook')
-rw-r--r-- | lib/oxidized/hook/awssns.rb | 4 |
1 files changed, 2 insertions, 2 deletions
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 |