diff options
author | Adin Scannell <ascannell@google.com> | 2021-01-12 12:36:17 -0800 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-01-12 12:38:22 -0800 |
commit | 4e03e87547853523d4ff941935a6ef1712518c61 (patch) | |
tree | e930ce0e5f15f7041e7b74daca05acc7afbd2558 /shim | |
parent | a20da708291e2e5bdece5176dce61c1b4b10b7d9 (diff) |
Fix simple mistakes identified by goreportcard.
These are primarily simplification and lint mistakes. However, minor
fixes are also included and tests added where appropriate.
PiperOrigin-RevId: 351425971
Diffstat (limited to 'shim')
-rw-r--r-- | shim/v1/cli/cli.go | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/shim/v1/cli/cli.go b/shim/v1/cli/cli.go index 1a502eabd..cdf60cc2e 100644 --- a/shim/v1/cli/cli.go +++ b/shim/v1/cli/cli.go @@ -164,7 +164,6 @@ func serve(server *ttrpc.Server, path string) error { ) if path == "" { l, err = net.FileListener(os.NewFile(3, "socket")) - path = "[inherited from parent]" } else { if len(path) > 106 { return fmt.Errorf("%q: unix socket path too long (> 106)", path) |