fix: incorrect conversion between integer types #467
Merged
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.
Summary
Includes changes to the
internal/resources/tanzupackageinstall/spec/cluster_scope.go
file to enhance the handling of numeric values in theConstructSpecForClusterScope
function. The most important changes include the addition of a new import and improved handling of large integer values.Improvements to numeric handling:
internal/resources/tanzupackageinstall/spec/cluster_scope.go
: Added themath
package import to enable the use ofmath.MaxInt32
for checking the maximum integer value.internal/resources/tanzupackageinstall/spec/cluster_scope.go
: Modified theConstructSpecForClusterScope
function to check if a number exceedsmath.MaxInt32
and handle it appropriately by storing it as a string instead of converting it to anint
.Type
Please describe:
Breaking Changes?
Test and Documentation
Issue References
https://github.com/vmware/terraform-provider-tanzu-mission-control/security/code-scanning/1
Additional Information