Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 14a0f39

Browse files
committedNov 2, 2017
Fix BuildConfigInstantiateFailed warning when lastVersion == 0
Build config instatiate should not emit a warning when bc.Status.LastVersion != lastVersion and lastVersion == 0 Fixes #16557
1 parent cf510ea commit 14a0f39

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed
 

‎pkg/build/generator/generator.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -314,9 +314,9 @@ func (g *BuildGenerator) instantiate(ctx apirequest.Context, request *buildapi.B
314314
}
315315

316316
// checkBuildConfigLastVersion will return an error if the BuildConfig's LastVersion doesn't match the passed in lastVersion
317-
// when lastVersion is not nil
317+
// when lastVersion is not nil and lastVersion is not zero
318318
func (g *BuildGenerator) checkLastVersion(bc *buildapi.BuildConfig, lastVersion *int64) error {
319-
if lastVersion != nil && bc.Status.LastVersion != *lastVersion {
319+
if lastVersion != nil && *lastVersion != 0 && bc.Status.LastVersion != *lastVersion {
320320
glog.V(2).Infof("Aborting version triggered build for BuildConfig %s/%s because the BuildConfig LastVersion (%d) does not match the requested LastVersion (%d)", bc.Namespace, bc.Name, bc.Status.LastVersion, *lastVersion)
321321
return fmt.Errorf("the LastVersion(%v) on build config %s/%s does not match the build request LastVersion(%d)",
322322
bc.Status.LastVersion, bc.Namespace, bc.Name, *lastVersion)

‎pkg/build/generator/generator_test.go

+8-1
Original file line numberDiff line numberDiff line change
@@ -596,9 +596,16 @@ func TestInstantiateWithLastVersion(t *testing.T) {
596596
t.Errorf("Unexpected error %v", err)
597597
}
598598

599-
// Version specified, but doesn't match
599+
// Version 0 specified, but doesn't match
600600
lastVersion = 0
601601
_, err = g.Instantiate(apirequest.NewDefaultContext(), &buildapi.BuildRequest{LastVersion: &lastVersion})
602+
if err != nil {
603+
t.Errorf("Unexpected error %v", err)
604+
}
605+
606+
// Version specified, but doesn't match
607+
lastVersion = int64(2)
608+
_, err = g.Instantiate(apirequest.NewDefaultContext(), &buildapi.BuildRequest{LastVersion: &lastVersion})
602609
if err == nil {
603610
t.Errorf("Expected an error and did not get one")
604611
}

0 commit comments

Comments
 (0)
Please sign in to comment.