mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-06-26 23:38:31 +00:00
runtime: spelling fixes
Minor spelling fixes in runtime log messages. Signed-off-by: Mike Frisch <mikef17@gmail.com>
This commit is contained in:
parent
b85b1c1058
commit
c2f61b0fe3
@ -457,7 +457,7 @@ func failOutstandingCommands(cmdQueue *list.List) {
|
||||
cmd := e.Value.(*qmpCommand)
|
||||
select {
|
||||
case cmd.res <- qmpResult{
|
||||
err: errors.New("exitting QMP loop, command cancelled"),
|
||||
err: errors.New("exiting QMP loop, command cancelled"),
|
||||
}:
|
||||
case <-cmd.ctx.Done():
|
||||
}
|
||||
@ -626,7 +626,7 @@ func (q *QMP) executeCommandWithResponse(ctx context.Context, name string, args
|
||||
resCh := make(chan qmpResult)
|
||||
select {
|
||||
case <-q.disconnectedCh:
|
||||
err = errors.New("exitting QMP loop, command cancelled")
|
||||
err = errors.New("exiting QMP loop, command cancelled")
|
||||
case q.cmdCh <- qmpCommand{
|
||||
ctx: ctx,
|
||||
res: resCh,
|
||||
|
Loading…
Reference in New Issue
Block a user