summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThom May <thom@may.lt>2018-01-29 14:54:00 +0000
committerGitHub <noreply@github.com>2018-01-29 14:54:00 +0000
commit4b52f6e494807e012f426f0e1db88e1037471718 (patch)
tree1c4b3087de251fad162a78cda95e666dbfc6ef3c
parent4819bca690e78998a146847e7c64ac58f246cd16 (diff)
parentbbf95fcff905f27aedb042a522735f9cc9ae9933 (diff)
downloadchef-4b52f6e494807e012f426f0e1db88e1037471718.tar.gz
Merge pull request #6801 from chef/epic_fail_removal
Remove epic_fail alias to ignore_failure
-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.