summaryrefslogtreecommitdiff
path: root/extra/rest_client.rb
diff options
context:
space:
mode:
authorp-sherratt <me@paul.sh>2013-09-05 21:57:27 +0100
committerp-sherratt <me@paul.sh>2013-09-05 21:57:27 +0100
commit9dc92d9c8d1760efba8015db659e95bc6cd1a070 (patch)
tree936565dfcbf69aea3d705230aa7d787ac5e193b9 /extra/rest_client.rb
parentc5e835ee282ef60aed54fd3a7d086724d5174aaf (diff)
quick fix in rest_client.rb
Diffstat (limited to 'extra/rest_client.rb')
-rw-r--r--extra/rest_client.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/extra/rest_client.rb b/extra/rest_client.rb
index 88daeae..19f2439 100644
--- a/extra/rest_client.rb
+++ b/extra/rest_client.rb
@@ -6,9 +6,9 @@ module Oxidized
PORT = 8888
class << self
- def next node, opt={}, host=HOST, port=PORT
+ def next opt={}, host=HOST, port=PORT
web = new host, port
- web.next node, opt
+ web.next opt
end
end