Skip to content

Commit 037a60d

Browse files
Merge pull request #165 from gridscale/feature/add-retry
Allow retry 10 times with 1s interval
2 parents d0669e2 + fc3ae76 commit 037a60d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

runtime/runtime.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -287,8 +287,8 @@ func newClient(account ProjectEntry) *gsclient.Client {
287287
account.Token,
288288
false,
289289
true,
290-
500,
291-
0, // no retries
290+
10000,
291+
10, // no retries
292292
)
293293
return gsclient.NewClient(config)
294294
}

0 commit comments

Comments
 (0)