1
0
mirror of https://github.com/moby/moby.git synced 2025-07-29 07:21:35 +03:00

Remove publisher if no one is listening

Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
This commit is contained in:
Michael Crosby
2015-01-20 11:37:50 -08:00
parent 76141a0077
commit 217a2bd1b6
3 changed files with 13 additions and 2 deletions

View File

@ -274,10 +274,10 @@ func TestGetContainerStats(t *testing.T) {
t.Fatalf("GET containers/stats sockRequest failed: %v", err)
}
dec := json.NewDecoder(bytes.NewBuffer(body))
var s *stats.Stats
if err := json.Unmarshal(body, &s); err != nil {
if err := dec.Decode(&s); err != nil {
t.Fatal(err)
}
logDone("container REST API - check GET containers/stats")
}