dont return

pull/8002/head
Medya Gh 2020-05-04 14:19:43 -07:00
parent d776a22851
commit d2a9180edc
1 changed files with 2 additions and 3 deletions

View File

@ -202,10 +202,9 @@ func clusterLogs(t *testing.T, profile string) {
rr, err := Run(t, exec.Command("docker", "logs", "--details", profile)) rr, err := Run(t, exec.Command("docker", "logs", "--details", profile))
if err != nil { if err != nil {
t.Logf("failed to get docker logs : %v", err) t.Logf("failed to get docker logs : %v", err)
return } else {
}
t.Logf("(dbg) %s:\n%s", rr.Command(), rr.Output()) t.Logf("(dbg) %s:\n%s", rr.Command(), rr.Output())
}
} }
st := Status(context.Background(), t, Target(), profile, "Host") st := Status(context.Background(), t, Target(), profile, "Host")
if st != state.Running.String() { if st != state.Running.String() {