summaryrefslogtreecommitdiff
path: root/extra/rest_client.rb
diff options
context:
space:
mode:
authorSaku Ytti <saku@ytti.fi>2013-04-26 19:35:43 +0300
committerSaku Ytti <saku@ytti.fi>2013-04-26 19:35:43 +0300
commit5fca52c86b50dd9754546902530530b9c0f6216b (patch)
treef0ece477d6518c2ef6ce9a38b77cb53d1f333060 /extra/rest_client.rb
parent3dc52f34c386409e65465aaa0878ac5db812570c (diff)
1.9/2.0 compatibility fix + syslogd cleanup
Diffstat (limited to 'extra/rest_client.rb')
-rw-r--r--extra/rest_client.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/extra/rest_client.rb b/extra/rest_client.rb
index 2c58d04..88daeae 100644
--- a/extra/rest_client.rb
+++ b/extra/rest_client.rb
@@ -16,9 +16,9 @@ module Oxidized
@web = Net::HTTP.new host, port
end
- def next node, opt={}
- data = JSON.dump :node => node, :user => opt[:user], :msg => opt[:msg], :from => opt[:from]
- @web.put '/nodes/next/' + node.to_s, data
+ def next opt
+ data = JSON.dump opt
+ @web.put '/nodes/next/' + opt[:name].to_s, data
end
end