diff options
author | Markus Roberts <Markus@reality.com> | 2010-01-24 18:32:25 -0800 |
---|---|---|
committer | Markus Roberts <Markus@reality.com> | 2010-01-24 18:32:25 -0800 |
commit | 0025e13792b6a8e010ce1fd1dc20a17e7ba8af53 (patch) | |
tree | 5715206a2db5717adb7077ff786541906b8fde28 /lib/puppet/util/feature.rb | |
parent | bfc9e45309abd182aac99a7dbf8960540fc05bf6 (diff) | |
download | puppet-0025e13792b6a8e010ce1fd1dc20a17e7ba8af53.tar.gz puppet-0025e13792b6a8e010ce1fd1dc20a17e7ba8af53.tar.xz puppet-0025e13792b6a8e010ce1fd1dc20a17e7ba8af53.zip |
Partial reversion of patch for #3088 to fix #3104 (Exception misreported)
In my patch for #3088 I made a erroneous assumption about the ruby exception
hierarchy and thus missed the fact that Timeout::error descends from both
SignalError and Interrupt. This is a partial reversion of the patch for #3088
to let these through so that more useful error messages can be produced.
Diffstat (limited to 'lib/puppet/util/feature.rb')
-rw-r--r-- | lib/puppet/util/feature.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/util/feature.rb b/lib/puppet/util/feature.rb index 8f77a2724..6218eabf4 100644 --- a/lib/puppet/util/feature.rb +++ b/lib/puppet/util/feature.rb @@ -83,7 +83,7 @@ class Puppet::Util::Feature begin require lib - rescue SystemExit,NoMemoryError,SignalException,Interrupt + rescue SystemExit,NoMemoryError raise rescue Exception Puppet.debug "Failed to load library '%s' for feature '%s'" % [lib, name] |