summaryrefslogtreecommitdiff
diff options
authorPaweł Stołowski <stolowski@gmail.com>2020-04-22 12:11:59 +0200
committerPaweł Stołowski <stolowski@gmail.com>2020-04-22 12:11:59 +0200
commit85f60aa2c40f6d8a0be167483d1f821b57bd5b3f (patch)
treec6ba908f6f502710f01eba081e32053a84eb3e14
parent4ead1171341608f30f3577cfd162b50a377e617b (diff)
Tweak Waiting for restart... message to provide more context and be less confusing.fix-restart-message
Fixes LP: #1873452
-rw-r--r--overlord/snapstate/snapstate.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/overlord/snapstate/snapstate.go b/overlord/snapstate/snapstate.go
index 1c44607415..3f821bcdee 100644
--- a/overlord/snapstate/snapstate.go
+++ b/overlord/snapstate/snapstate.go
@@ -429,7 +429,7 @@ var CheckHealthHook = func(st *state.State, snapName string, rev snap.Revision)
func WaitRestart(task *state.Task, snapsup *SnapSetup) (err error) {
if ok, _ := task.State().Restarting(); ok {
// don't continue until we are in the restarted snapd
- task.Logf("Waiting for restart...")
+ task.Logf("Waiting for automatic snapd restart...")
return &state.Retry{}
}