From 3903ad3afdc4712c90f06566b979e7ed14902767 Mon Sep 17 00:00:00 2001 From: Kunal Memane Date: Wed, 5 Nov 2025 12:46:05 +0530 Subject: [PATCH 1/2] DO NOT MERGE - testing a possible bug --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 1e5a787b081..b22fca17dda 100644 --- a/README.md +++ b/README.md @@ -2,3 +2,5 @@ This repositotory contains tooling used in Openshift CI. Please refer to the [documentation](https://docs.ci.openshift.org/) for details. + +DO NOT MERGE - investigating a possible bug. \ No newline at end of file From 411d5a637d90a2afbe60790d4714f4af3ad981ef Mon Sep 17 00:00:00 2001 From: Kunal Memane Date: Wed, 5 Nov 2025 15:12:01 +0530 Subject: [PATCH 2/2] testing chnage with increasing delay --- pkg/steps/source.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/steps/source.go b/pkg/steps/source.go index 341a6fbff78..c2b81114aec 100644 --- a/pkg/steps/source.go +++ b/pkg/steps/source.go @@ -555,7 +555,7 @@ func handleBuild(ctx context.Context, client BuildClient, podClient kubernetes.P if err := wait.ExponentialBackoff(wait.Backoff{Duration: time.Minute, Factor: 1.5, Steps: attempts}, func() (bool, error) { var attempt buildapi.Build // builds are using older src image, adding wait to avoid race condition - time.Sleep(1 * time.Minute) + time.Sleep(time.Minute * 4) build.DeepCopyInto(&attempt) if err := client.Create(ctx, &attempt); err == nil { logrus.Infof("Created build %q", name)