summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeth Falcon <seth@opscode.com>2014-03-28 17:02:56 -0700
committerSeth Falcon <seth@opscode.com>2014-03-28 17:02:56 -0700
commitf22a9acc3e1be3ea3907424d83da3c23922989f0 (patch)
tree3c13f8830cf74d6bd474422cb789dfd4abe43b77
parent349a0ddab572720bb856afb27112670144c1de05 (diff)
downloadchef-sf/OC-11455.tar.gz
Add require of config_fetcher to applicationsf/OC-11455
The application class uses chef/config and chef/config_fetcher but was not requiring the latter. A future refactor might be to arrange for config_fetcher to be required by chef/config since they are commonly used together.
-rw-r--r--lib/chef/application.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/chef/application.rb b/lib/chef/application.rb
index 601bbd91f1..a943326d95 100644
--- a/lib/chef/application.rb
+++ b/lib/chef/application.rb
@@ -19,6 +19,7 @@
require 'pp'
require 'socket'
require 'chef/config'
+require 'chef/config_fetcher'
require 'chef/exceptions'
require 'chef/log'
require 'chef/platform'