diff options
author | Luke Kanies <luke@madstop.com> | 2008-07-30 22:22:57 -0500 |
---|---|---|
committer | Luke Kanies <luke@madstop.com> | 2008-07-30 22:22:57 -0500 |
commit | 186f3cd34fb7fa3bc1ff683a5178444526259f92 (patch) | |
tree | 9f35ff81e40f45d0e9da1dc5ca686d9abb613108 /lib/puppet/indirector/rest.rb | |
parent | 29d704c3f7d69f04e27aae69f4c1ef9dfc979972 (diff) | |
download | puppet-186f3cd34fb7fa3bc1ff683a5178444526259f92.tar.gz puppet-186f3cd34fb7fa3bc1ff683a5178444526259f92.tar.xz puppet-186f3cd34fb7fa3bc1ff683a5178444526259f92.zip |
Removing an obsolete method from the rest indirector
Signed-off-by: Luke Kanies <luke@madstop.com>
Diffstat (limited to 'lib/puppet/indirector/rest.rb')
-rw-r--r-- | lib/puppet/indirector/rest.rb | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/puppet/indirector/rest.rb b/lib/puppet/indirector/rest.rb index c33b8a949..e59b332c0 100644 --- a/lib/puppet/indirector/rest.rb +++ b/lib/puppet/indirector/rest.rb @@ -36,10 +36,6 @@ class Puppet::Indirector::REST < Puppet::Indirector::Terminus Puppet::Network::HttpPool.http_instance(Puppet[:server], Puppet[:masterport].to_i) end - def rest_connection_details - { :host => Puppet[:server], :port => Puppet[:masterport].to_i } - end - def find(request) deserialize network.get("/#{indirection.name}/#{request.key}", headers) end |