7167: update the progress message to say "est. time remaining" instead of "ETA" which...
authorradhika <radhika@curoverse.com>
Thu, 15 Oct 2015 16:18:20 +0000 (12:18 -0400)
committerradhika <radhika@curoverse.com>
Thu, 15 Oct 2015 16:18:20 +0000 (12:18 -0400)
tools/keep-rsync/keep-rsync.go

index c39f0675c6cc52e9935700bbfa157ecba6311f44..705025b07970f720388f4139a6143234e8bd2e12 100644 (file)
@@ -262,7 +262,7 @@ func copyBlocksToDst(toBeCopied []string, kcSrc, kcDst *keepclient.KeepClient, b
                                float64(done)/float64(total)*100, locator)
                } else {
                        timePerBlock := time.Since(startedAt) / time.Duration(done)
-                       log.Printf("Copying data block %d of %d (%.2f%% done, ETA %v): %v", done+1, total,
+                       log.Printf("Copying data block %d of %d (%.2f%% done, %v est. time remaining): %v", done+1, total,
                                float64(done)/float64(total)*100, timePerBlock*time.Duration(total-done), locator)
                }