Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extend aem_installer to rescue Errno::EAFNOSUPPORT #140

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## Unreleased
### Summary
Minor Changes
* Change aem_installer to rescue Address family not supported by protocol (Errno::EAFNOSUPPORT)

## 2017-01-26 - Release 3.0.0
### Summary

Expand Down
2 changes: 1 addition & 1 deletion lib/puppet/provider/aem_installer/default.rb
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def monitor_site(desired_state = :on)
when Net::HTTPSuccess, Net::HTTPRedirection, Net::HTTPUnauthorized
return if desired_state == :on
end
rescue SocketError, Timeout::Error, Errno::ECONNREFUSED, Errno::EHOSTDOWN, Errno::EHOSTUNREACH, Errno::ETIMEDOUT
rescue SocketError, Timeout::Error, Errno::ECONNREFUSED, Errno::EHOSTDOWN, Errno::EHOSTUNREACH, Errno::ETIMEDOUT, Errno::EAFNOSUPPORT
return if desired_state == :off
end
sleep @property_hash[:snooze]
Expand Down