summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2020-06-23 10:26:25 -0700
committerGitHub <noreply@github.com>2020-06-23 10:26:25 -0700
commit604ac541349cd0c570e393f9c6cc83da39f497cc (patch)
treee4d5de77d37db902f49079387cd370961d49d1f7
parentfb303196b178fcbf7f769246eb3fbb6dd4987cea (diff)
parenta0cd0d13f6ac1d077787fa6fcf2f5ddf80a90fc3 (diff)
downloadchef-604ac541349cd0c570e393f9c6cc83da39f497cc.tar.gz
Merge pull request #10039 from chef/bootstrap_protocol_15
Let the user know what protocol we're using in knife bootstrap
-rw-r--r--lib/chef/knife/bootstrap.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/knife/bootstrap.rb b/lib/chef/knife/bootstrap.rb
index f61039cb51..503c1c99ca 100644
--- a/lib/chef/knife/bootstrap.rb
+++ b/lib/chef/knife/bootstrap.rb
@@ -619,7 +619,7 @@ class Chef
end
def connect!
- ui.info("Connecting to #{ui.color(server_name, :bold)}")
+ ui.info("Connecting to #{ui.color(server_name, :bold)} using #{connection_protocol}")
opts ||= connection_opts.dup
do_connect(opts)
rescue Train::Error => e