1
0
mirror of synced 2026-03-29 20:36:56 +00:00

Retry reconcile and clone actions once

We have observed that the code at times outperforms GitHub mechanics,
resulting in not found errors that are only true for a millisecond.
Retrying those actions once with a 2 second delay should be more
friendly to users.

Signed-off-by: Hidde Beydals <hello@hidde.co>
This commit is contained in:
Hidde Beydals
2021-04-06 15:35:09 +02:00
parent 4ece12348b
commit 7481c6beb0
3 changed files with 36 additions and 8 deletions

View File

@@ -104,8 +104,11 @@ func (b *PlainGitBootstrapper) ReconcileComponents(ctx context.Context, manifest
}
b.logger.Actionf("cloning branch %q from Git repository %q", b.branch, b.url)
cloned, err := b.git.Clone(ctx, b.url, b.branch)
if err != nil {
var cloned bool
if err = retry(1, 2*time.Second, func() (err error) {
cloned, err = b.git.Clone(ctx, b.url, b.branch)
return
}); err != nil {
return fmt.Errorf("failed to clone repository: %w", err)
}
if cloned {
@@ -216,12 +219,15 @@ func (b *PlainGitBootstrapper) ReconcileSyncConfig(ctx context.Context, options
if _, err := b.git.Status(); err != nil {
if err == git.ErrNoGitRepository {
b.logger.Actionf("cloning branch %q from Git repository %q", b.branch, b.url)
cloned, err := b.git.Clone(ctx, b.url, b.branch)
if err != nil {
var cloned bool
if err = retry(1, 2*time.Second, func() (err error) {
cloned, err = b.git.Clone(ctx, b.url, b.branch)
return
}); err != nil {
return fmt.Errorf("failed to clone repository: %w", err)
}
if cloned {
b.logger.Successf("cloned repository", b.url)
b.logger.Successf("cloned repository")
}
}
return err