Skip to content

Commit

Permalink
PR: error
Browse files Browse the repository at this point in the history
Co-authored-by: Danny Canter <36526702+dcantah@users.noreply.github.com>
  • Loading branch information
helsaawy and dcantah committed May 3, 2022
1 parent d11d405 commit b99624a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/guest/runtime/hcsv2/network.go
Expand Up @@ -123,7 +123,7 @@ func (n *namespace) AssignContainerPid(ctx context.Context, pid int) (err error)
defer n.m.Unlock()

if n.pid != 0 {
return errors.Errorf("previously assigned container pid to network namespace %q: %d", n.id, n.pid)
return errors.Errorf("previously assigned container pid %d to network namespace %q", n.pid, n.id)
}

n.pid = pid
Expand Down

0 comments on commit b99624a

Please sign in to comment.