Merge pull request #26118 from Microsoft/jjh/golintfixes

Fix golint errors in api
This commit is contained in:
John Howard 2016-08-29 15:38:55 -07:00 коммит произвёл GitHub
Родитель 2c91c5fdad c8ce0856b7
Коммит bf3d017f08
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -421,7 +421,7 @@ func replaceDockerfileTarWrapper(ctx context.Context, inputTarStream io.ReadClos
return
}
var content io.Reader = tarReader
content := io.Reader(tarReader)
if hdr.Name == dockerfileName {
// This entry is the Dockerfile. Since the tar archive was
// generated from a directory on the local filesystem, the

Просмотреть файл

@ -163,7 +163,7 @@ func (br *buildRouter) postBuild(ctx context.Context, w http.ResponseWriter, r *
return progress.NewProgressReader(in, progressOutput, r.ContentLength, "Downloading context", remoteURL)
}
var out io.Writer = output
out := io.Writer(output)
if buildOptions.SuppressOutput {
out = notVerboseBuffer
}