summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakuto Komazaki <komazarari@gmail.com>2020-06-25 06:15:37 +0000
committerTakuto Komazaki <komazarari@gmail.com>2020-06-25 06:15:37 +0000
commit027297292a25957ed4ec06e3bfa743e678164b87 (patch)
tree52974e1bd797ae6c936432db5159954b2daa6d69
parent696ecf12ff818f86c1d0853b407c0dd6cac9bc9f (diff)
downloadchef-027297292a25957ed4ec06e3bfa743e678164b87.tar.gz
Fixed broken chef-apply with -j
that causes a `NameError: uninitialized constant Chef::ConfigFetcher`. Signed-off-by: Takuto Komazaki <komazarari@gmail.com>
-rw-r--r--lib/chef/application/apply.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/chef/application/apply.rb b/lib/chef/application/apply.rb
index 4ed2d2a1f2..c8c0c0eaf6 100644
--- a/lib/chef/application/apply.rb
+++ b/lib/chef/application/apply.rb
@@ -21,6 +21,7 @@ require_relative "../../chef"
require_relative "../application"
require_relative "../client"
require_relative "../config"
+require_relative "../config_fetcher"
require_relative "../log"
require "fileutils" unless defined?(FileUtils)
require "tempfile" unless defined?(Tempfile)