Browse Source

Fix typo in log-message

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Sebastiaan van Stijn 7 years ago
parent
commit
5c3418e38b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      libcontainerd/remote_daemon.go

+ 1 - 1
libcontainerd/remote_daemon.go

@@ -278,7 +278,7 @@ func (r *remote) monitorConnection(client *containerd.Client) {
 
 		select {
 		case <-r.shutdownContext.Done():
-			r.logger.Info("stopping healtcheck following graceful shutdown")
+			r.logger.Info("stopping healthcheck following graceful shutdown")
 			client.Close()
 			return
 		default: