|
In /lib/facter/ec2/rest.rb, Class Userdata < Base, def fetch, does not open the url with the proxy set to nil. So environments with a proxy set in a VM will cause this fact to fail after a timeout. Other ec2 facts will succeed as in fetch_endpoint, because the proxy is set to nill.
Line 125 should be: open(@baseurl, :proxy => nil).read instead of open(@baseurl).read
|