diff options
author | Steven Danna <steve@chef.io> | 2015-10-22 09:31:51 +0100 |
---|---|---|
committer | Steven Danna <steve@chef.io> | 2015-10-29 14:03:22 +0000 |
commit | 5a1eb3e0cba55068aeaec03e0d2271e19a7ad4e7 (patch) | |
tree | 79e15822e47ddabe832fba95577a65eacbd15ff6 /CHANGELOG.md | |
parent | 571891bf67667d0240edd632c36fc84cd0fc8bbe (diff) | |
download | chef-5a1eb3e0cba55068aeaec03e0d2271e19a7ad4e7.tar.gz |
Improve detection of ChefFS-based commands in `knife rehash`ssd/rehash-cheffs
ChefFS-based commands have a superclass (Chef::ChefFS::Knife) which
defines its own inherited method that calls super. This breaks our
detection of where the subcommand is defined since the file with
the definition is no longer at the top of the call stack.
This commit special-cases subclasses with a superclass of
Chef::ChefFS::Knife to account for this.
Fixes #4089
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 17608b32f8..2d434b3c28 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -48,6 +48,7 @@ * [pr#3597](https://github.com/chef/chef/pull/3597) print STDOUT from the powershell_script * [pr#4091](https://github.com/chef/chef/pull/4091) Allow downloading of root_files in a chef repository * [pr#4112](https://github.com/chef/chef/pull/4112) Update knife bootstrap command to honor --no-color flag in chef-client run that is part of the bootstrap process. +* [pr#4090](https://github.com/chef/chef/pull/4090) Improve detection of ChefFS-based commands in `knife rehash` ## 12.5.1 |