summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2018-01-26 12:02:56 -0800
committerTim Smith <tsmith@chef.io>2018-01-26 12:02:56 -0800
commitbbf95fcff905f27aedb042a522735f9cc9ae9933 (patch)
tree1516c177b259161dcf29d4f33e1418ffeb8a65dd
parent1b58e044a3c2b3fb11f4064a092fb268203be269 (diff)
downloadchef-epic_fail_removal.tar.gz
Remove epic_fail alias to ignore_failureepic_fail_removal
We deprecated this in 13.7 and we have a Foodcritic rule to identify it. There's only 1 person using it on the entire Supermarket since we haven't documented it since Chef docs were on the wiki. Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--lib/chef/resource.rb5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/chef/resource.rb b/lib/chef/resource.rb
index 5ee4be6e25..65c2e51cf2 100644
--- a/lib/chef/resource.rb
+++ b/lib/chef/resource.rb
@@ -536,11 +536,6 @@ class Chef
property :ignore_failure, [ TrueClass, FalseClass ], default: false, desired_state: false
#
- # Equivalent to #ignore_failure.
- #
- alias :epic_fail :ignore_failure
-
- #
# Make this resource into an exact (shallow) copy of the other resource.
#
# @param resource [Chef::Resource] The resource to copy from.