From 7704603d2ed5150d52ab0128c885f3ec9b77a8bf Mon Sep 17 00:00:00 2001 From: Stanislav Yotov <29090864+svyotov@users.noreply.github.com> Date: Mon, 31 Aug 2020 10:39:17 +0100 Subject: [PATCH] doc --- ghbackup/run.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghbackup/run.go b/ghbackup/run.go index 205adc0..32a5873 100644 --- a/ghbackup/run.go +++ b/ghbackup/run.go @@ -37,7 +37,7 @@ func Run(config Config) error { results := make(chan repoState) - // Backup repositories in parallel with exponential-backoff retries + // Backup repositories in parallel with retries go each(repos, config.Workers, func(r repo) { state, err := config.backup(r) for _, sleepDuration := range []time.Duration{5, 15, 45, 90, 180, -1} {