cmd/coordinator: fix nostream feature

Change-Id: Iae8c46ccf7d87ecd33850ed2c750cb81022be3eb
Reviewed-on: https://go-review.googlesource.com/10494
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
Andrew Gerrand 2015-05-28 16:13:40 -07:00 коммит произвёл Brad Fitzpatrick
Родитель ff978d757e
Коммит aa078a3723
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -490,7 +490,7 @@ func handleLogs(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "\n\n(no live streaming. reload manually to see status)\n")
st.mu.Lock()
defer st.mu.Unlock()
st.output.WriteTo(w)
w.Write(st.output.Bytes())
return
}