GCP: Fix panic while parsing a specific build job log #1380
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The
cloudbuildResourcesFromBuildLog()
function from the internal GCPpackage could cause panic while parsing Build job log which failed early
and didn't create any Compute Engine resources. The function relied on
the
Regexp.FindStringSubmatch()
method to always return a matchwhile being used on the build log. Accessing a member of a nil slice
would cause a panic in
osbuild-worker
, such as:Add a unit test testing this scenario.
Make the
cloudbuildResourcesFromBuildLog()
function more robust andnot blindly expect to find matches in the build log. As a result the
cloudbuildBuildResources
struct instance returned from the functionmay be empty. Subsequently make sure that the
CloudbuildBuildCleanup()
method handles an empty
cloudbuildBuildResources
instance correctly.Specifically the
storageCacheDir.bucket
may be an empty string andthus won't exist. Ensure that this does not result in infinite loop by
checking for
storage.ErrBucketNotExist
while iterating the bucketobjects.
Signed-off-by: Tomas Hozza [email protected]
This pull request includes: