diff options
author | gVisor bot <gvisor-bot@google.com> | 2019-10-31 11:26:45 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2019-10-31 11:26:45 -0700 |
commit | 0202be1ba57341f9d257564a3af5a88d54de9df2 (patch) | |
tree | 7d60c783bc6269b1e021568dff08c4a9b0c4f3d6 /runsc | |
parent | 3246040447c6d0a08cc12c5721480c06f77f5dfe (diff) | |
parent | 1f19624fa127d7d59cabe29593cc80b7fe6c81f8 (diff) |
Merge pull request #1058 from cmingxu:master
PiperOrigin-RevId: 277623766
Diffstat (limited to 'runsc')
-rw-r--r-- | runsc/boot/controller.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runsc/boot/controller.go b/runsc/boot/controller.go index 5f644b57e..928285683 100644 --- a/runsc/boot/controller.go +++ b/runsc/boot/controller.go @@ -51,7 +51,7 @@ const ( ContainerEvent = "containerManager.Event" // ContainerExecuteAsync is the URPC endpoint for executing a command in a - // container.. + // container. ContainerExecuteAsync = "containerManager.ExecuteAsync" // ContainerPause pauses the container. @@ -161,7 +161,7 @@ func newController(fd int, l *Loader) (*controller, error) { }, nil } -// containerManager manages sandboes containers. +// containerManager manages sandbox containers. type containerManager struct { // startChan is used to signal when the root container process should // be started. |