Fix grammar on error message
Signed-off-by: Justin Cormack <justin.cormack@docker.com>
(cherry picked from commit cd5c8e9c2d
)
Signed-off-by: Victor Vieux <victorvieux@gmail.com>
This commit is contained in:
parent
7d7af6ad14
commit
0e386515c8
1 changed files with 2 additions and 2 deletions
|
@ -1028,7 +1028,7 @@ func (daemon *Daemon) ActivateContainerServiceBinding(containerName string) erro
|
|||
}
|
||||
sb := daemon.getNetworkSandbox(container)
|
||||
if sb == nil {
|
||||
return fmt.Errorf("network sandbox not exists for container %s", containerName)
|
||||
return fmt.Errorf("network sandbox does not exist for container %s", containerName)
|
||||
}
|
||||
return sb.EnableService()
|
||||
}
|
||||
|
@ -1041,7 +1041,7 @@ func (daemon *Daemon) DeactivateContainerServiceBinding(containerName string) er
|
|||
}
|
||||
sb := daemon.getNetworkSandbox(container)
|
||||
if sb == nil {
|
||||
return fmt.Errorf("network sandbox not exists for container %s", containerName)
|
||||
return fmt.Errorf("network sandbox does not exist for container %s", containerName)
|
||||
}
|
||||
return sb.DisableService()
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue