Skip to content

Commit

Permalink
Merge pull request moby#21274 from jfrazelle/fix-variables-that-weren…
Browse files Browse the repository at this point in the history
…t-being-used

fix variables that werent being called
  • Loading branch information
Jess Frazelle committed Mar 19, 2016
2 parents 131c591 + 0e025b4 commit b77573f
Show file tree
Hide file tree
Showing 15 changed files with 40 additions and 34 deletions.
2 changes: 0 additions & 2 deletions api/server/router/container/exec.go
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,6 @@ func (s *containerRouter) postContainerExecStart(ctx context.Context, w http.Res
stderr = stdcopy.NewStdWriter(outStream, stdcopy.Stderr)
stdout = stdcopy.NewStdWriter(outStream, stdcopy.Stdout)
}
} else {
outStream = w
}

// Now run the user process in container.
Expand Down
3 changes: 3 additions & 0 deletions builder/dockerfile/builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,9 @@ func sanitizeRepoAndTags(names []string) ([]reference.Named, error) {

if _, isTagged := ref.(reference.NamedTagged); !isTagged {
ref, err = reference.WithTag(ref, reference.DefaultTag)
if err != nil {
return nil, err
}
}

nameWithTag := ref.String()
Expand Down
2 changes: 1 addition & 1 deletion builder/dockerfile/parser/parser.go
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ func Parse(rwc io.Reader) (*Node, error) {
}
}
if child == nil && line != "" {
line, child, err = parseLine(line)
_, child, err = parseLine(line)
if err != nil {
return nil, err
}
Expand Down
15 changes: 11 additions & 4 deletions cliconfig/config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -378,12 +378,14 @@ func TestJsonWithPsFormat(t *testing.T) {

// Save it and make sure it shows up in new form
func saveConfigAndValidateNewFormat(t *testing.T, config *ConfigFile, homeFolder string) string {
err := config.Save()
if err != nil {
if err := config.Save(); err != nil {
t.Fatalf("Failed to save: %q", err)
}

buf, err := ioutil.ReadFile(filepath.Join(homeFolder, ConfigFileName))
if err != nil {
t.Fatal(err)
}
if !strings.Contains(string(buf), `"auths":`) {
t.Fatalf("Should have save in new form: %s", string(buf))
}
Expand Down Expand Up @@ -487,6 +489,9 @@ func TestJsonSaveWithNoFile(t *testing.T) {
t.Fatalf("Failed saving to file: %q", err)
}
buf, err := ioutil.ReadFile(filepath.Join(tmpHome, ConfigFileName))
if err != nil {
t.Fatal(err)
}
expConfStr := `{
"auths": {
"https://index.docker.io/v1/": {
Expand Down Expand Up @@ -517,11 +522,13 @@ func TestLegacyJsonSaveWithNoFile(t *testing.T) {

fn := filepath.Join(tmpHome, ConfigFileName)
f, _ := os.OpenFile(fn, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0600)
err = config.SaveToWriter(f)
if err != nil {
if err = config.SaveToWriter(f); err != nil {
t.Fatalf("Failed saving to file: %q", err)
}
buf, err := ioutil.ReadFile(filepath.Join(tmpHome, ConfigFileName))
if err != nil {
t.Fatal(err)
}

expConfStr := `{
"auths": {
Expand Down
7 changes: 2 additions & 5 deletions daemon/daemon_unix.go
Original file line number Diff line number Diff line change
Expand Up @@ -883,7 +883,6 @@ func parseRemappedRoot(usergrp string) (string, string, error) {
}
return "", "", fmt.Errorf("Error during %q user creation: %v", defaultRemappedID, err)
}
userID = luser.Uid
username = luser.Name
if len(idparts) == 1 {
// we only have a string username, and no group specified; look up gid from username as group
Expand All @@ -909,11 +908,9 @@ func parseRemappedRoot(usergrp string) (string, string, error) {
groupname = lgrp.Name
} else {
// not a number; attempt a lookup
group, err := user.LookupGroup(idparts[1])
if err != nil {
return "", "", fmt.Errorf("Error during gid lookup for %q: %v", idparts[1], err)
if _, err := user.LookupGroup(idparts[1]); err != nil {
return "", "", fmt.Errorf("Error during groupname lookup for %q: %v", idparts[1], err)
}
groupID = group.Gid
groupname = idparts[1]
}
}
Expand Down
4 changes: 4 additions & 0 deletions daemon/graphdriver/overlay/overlay.go
Original file line number Diff line number Diff line change
Expand Up @@ -371,6 +371,10 @@ func (d *Driver) Get(id string, mountLabel string) (string, error) {
// chown "workdir/work" to the remapped root UID/GID. Overlay fs inside a
// user namespace requires this to move a directory from lower to upper.
rootUID, rootGID, err := idtools.GetRootUIDGID(d.uidMaps, d.gidMaps)
if err != nil {
return "", err
}

if err := os.Chown(path.Join(workDir, "work"), rootUID, rootGID); err != nil {
return "", err
}
Expand Down
2 changes: 1 addition & 1 deletion pkg/authorization/authz_unix_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ func (t *authZPluginTestServer) start() {
r.HandleFunc("/Plugin.Activate", t.activate)
r.HandleFunc("/"+AuthZApiRequest, t.auth)
r.HandleFunc("/"+AuthZApiResponse, t.auth)
t.listener, err = net.Listen("tcp", pluginAddress)
t.listener, _ = net.Listen("tcp", pluginAddress)
server := http.Server{Handler: r, Addr: pluginAddress}
server.Serve(l)
}
Expand Down
3 changes: 3 additions & 0 deletions pkg/directory/directory_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,9 @@ func TestMoveToSubdir(t *testing.T) {
}
// validate that the files were moved to the subdirectory
infos, err := ioutil.ReadDir(subDir)
if err != nil {
t.Fatal(err)
}
if len(infos) != 4 {
t.Fatalf("Should be four files in the subdir after the migration: actual length: %d", len(infos))
}
Expand Down
7 changes: 0 additions & 7 deletions pkg/directory/directory_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,10 @@ package directory
import (
"os"
"path/filepath"

"github.com/docker/docker/pkg/longpath"
)

// Size walks a directory tree and returns its total size in bytes.
func Size(dir string) (size int64, err error) {
fixedPath, err := filepath.Abs(dir)
if err != nil {
return
}
fixedPath = longpath.AddPrefix(fixedPath)
err = filepath.Walk(dir, func(d string, fileInfo os.FileInfo, e error) error {
// Ignore directory sizes
if fileInfo == nil {
Expand Down
6 changes: 2 additions & 4 deletions pkg/jsonlog/jsonlog_marshalling.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,17 +93,15 @@ func (mj *JSONLog) MarshalJSONBuf(buf *bytes.Buffer) error {
ffjsonWriteJSONString(buf, mj.Log)
}
if len(mj.Stream) != 0 {
if first == true {
if first {
first = false
} else {
buf.WriteString(`,`)
}
buf.WriteString(`"stream":`)
ffjsonWriteJSONString(buf, mj.Stream)
}
if first == true {
first = false
} else {
if !first {
buf.WriteString(`,`)
}
buf.WriteString(`"time":`)
Expand Down
6 changes: 2 additions & 4 deletions pkg/jsonlog/jsonlogbytes.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,17 +39,15 @@ func (mj *JSONLogs) MarshalJSONBuf(buf *bytes.Buffer) error {
ffjsonWriteJSONString(buf, mj.Stream)
}
if len(mj.RawAttrs) > 0 {
if first == true {
if first {
first = false
} else {
buf.WriteString(`,`)
}
buf.WriteString(`"attrs":`)
buf.Write(mj.RawAttrs)
}
if first == true {
first = false
} else {
if !first {
buf.WriteString(`,`)
}
buf.WriteString(`"time":`)
Expand Down
3 changes: 1 addition & 2 deletions pkg/mount/sharedsubtree_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,7 @@ func ensureMountedAs(mountPoint, options string) error {
return err
}
}
mounted, err = Mounted(mountPoint)
if err != nil {
if _, err = Mounted(mountPoint); err != nil {
return err
}

Expand Down
3 changes: 1 addition & 2 deletions pkg/pools/pools_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,7 @@ func TestBufioWriterPoolPutAndGet(t *testing.T) {
buf.Reset()
BufioWriter32KPool.Put(writer)
// Try to write something
written, err = writer.Write([]byte("barfoo"))
if err != nil {
if _, err = writer.Write([]byte("barfoo")); err != nil {
t.Fatal(err)
}
// If we now try to flush it, it should panic (the writer is nil)
Expand Down
3 changes: 1 addition & 2 deletions pkg/symlink/fs_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ func toShort(path string) (string, error) {
}
if n > uint32(len(b)) {
b = make([]uint16, n)
n, err = syscall.GetShortPathName(&p[0], &b[0], uint32(len(b)))
if err != nil {
if _, err = syscall.GetShortPathName(&p[0], &b[0], uint32(len(b))); err != nil {
return "", err
}
}
Expand Down
8 changes: 8 additions & 0 deletions pkg/tarsum/tarsum_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -560,6 +560,10 @@ func Benchmark9kTar(b *testing.B) {
return
}
n, err := io.Copy(buf, fh)
if err != nil {
b.Error(err)
return
}
fh.Close()

reader := bytes.NewReader(buf.Bytes())
Expand All @@ -586,6 +590,10 @@ func Benchmark9kTarGzip(b *testing.B) {
return
}
n, err := io.Copy(buf, fh)
if err != nil {
b.Error(err)
return
}
fh.Close()

reader := bytes.NewReader(buf.Bytes())
Expand Down

0 comments on commit b77573f

Please sign in to comment.