From 2090479da5a0375b034c7d8ec048512ac459238e Mon Sep 17 00:00:00 2001 From: Eric Herot <400447+eherot@users.noreply.github.com> Date: Wed, 13 Jun 2018 18:21:01 -0400 Subject: [PATCH] Let people know that stopping an instance can sometimes take a while --- pkg/instancegroups/instancegroups.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/instancegroups/instancegroups.go b/pkg/instancegroups/instancegroups.go index 6ac0afd2f3..74616ddc32 100644 --- a/pkg/instancegroups/instancegroups.go +++ b/pkg/instancegroups/instancegroups.go @@ -270,9 +270,9 @@ func (r *RollingUpdateInstanceGroup) DeleteInstance(u *cloudinstances.CloudInsta nodeName = u.Node.Name } if nodeName != "" { - glog.Infof("Stopping instance %q, node %q, in group %q.", id, nodeName, r.CloudGroup.HumanName) + glog.Infof("Stopping instance %q, node %q, in group %q (this may take a while).", id, nodeName, r.CloudGroup.HumanName) } else { - glog.Infof("Stopping instance %q, in group %q.", id, r.CloudGroup.HumanName) + glog.Infof("Stopping instance %q, in group %q (this may take a while).", id, r.CloudGroup.HumanName) } if err := r.Cloud.DeleteInstance(u); err != nil {