You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: main.go
+8-13
Original file line number
Diff line number
Diff line change
@@ -7,14 +7,15 @@ import (
7
7
"log"
8
8
"net/url"
9
9
"sync"
10
-
"time"
11
10
12
11
"github.com/google/go-github/v34/github"
13
12
)
14
13
15
14
// MaxConcurrentClones is the upper limit of the maximum number of
16
15
// concurrent git clones
17
-
varMaxConcurrentClones=20
16
+
constMaxConcurrentClones=20
17
+
18
+
constdefaultMaxUserMigrationRetry=5
18
19
19
20
vargitHostTokenstring
20
21
varuseHTTPSClone*bool
@@ -50,7 +51,8 @@ func main() {
50
51
githubRepoType:=flag.String("github.repoType", "all", "Repo types to backup (all, owner, member, starred)")
51
52
52
53
githubCreateUserMigration:=flag.Bool("github.createUserMigration", false, "Download user data")
53
-
githubCreateUserMigrationRetry:=flag.Bool("github.createUserMigrationRetry", true, "Retry creating the user migration if we get an error")
54
+
githubCreateUserMigrationRetry:=flag.Bool("github.createUserMigrationRetry", true, "Retry creating the GitHub user migration if we get an error")
55
+
githubCreateUserMigrationRetryMax:=flag.Int("github.createUserMigrationRetryMax", defaultMaxUserMigrationRetry, "Number of retries to attempt for creating GitHub user migration")
54
56
githubListUserMigrations:=flag.Bool("github.listUserMigrations", false, "List available user migrations")
55
57
githubWaitForMigrationComplete:=flag.Bool("github.waitForUserMigration", true, "Wait for migration to complete")
56
58
@@ -114,18 +116,11 @@ func main() {
114
116
}
115
117
116
118
log.Printf("Creating a user migration for %d repos", len(repos))
117
-
m, err:=createGithubUserMigration(context.Background(), client, repos)
119
+
m, err:=createGithubUserMigration(context.Background(), client, repos, *githubCreateUserMigrationRetry, *githubCreateUserMigrationRetryMax)
118
120
iferr!=nil {
119
-
if!*githubCreateUserMigrationRetry {
120
-
log.Fatalf("Error creating migration: %v", err)
121
-
}
122
-
log.Printf("Got error when creating migration: %v. Retrying after sleeping for 300 seconds.", err)
123
-
time.Sleep(300*time.Second)
124
-
m, err=createGithubUserMigration(context.Background(), client, repos)
0 commit comments