Skip to content

Commit

Permalink
Provide more output during a disk delete
Browse files Browse the repository at this point in the history
  • Loading branch information
justinsb committed Apr 8, 2015
1 parent f9be5f8 commit 60dfbc6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/e2e/pd.go
Expand Up @@ -100,9 +100,10 @@ var _ = Describe("PD", func() {
By(fmt.Sprintf("deleting PD %q", diskName))
for start := time.Now(); time.Since(start) < 180*time.Second; time.Sleep(5 * time.Second) {
if err = deletePD(diskName); err != nil {
Logf("Couldn't delete PD. Sleeping 5 seconds")
Logf("Couldn't delete PD. Sleeping 5 seconds (%v)", err)
continue
}
Logf("Deleted PD %v", diskName)
break
}
expectNoError(err, "Error deleting PD")
Expand Down

0 comments on commit 60dfbc6

Please sign in to comment.