Skip to content

Commit

Permalink
DXE-3024 Merge pull request #191 from akamai/release/v7.2.1
Browse files Browse the repository at this point in the history
DXE-3024 Release/v7.2.1
  • Loading branch information
dawiddzhafarov authored Aug 25, 2023
2 parents 28af256 + 5dd63b3 commit 035f595
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# EDGEGRID GOLANG RELEASE NOTES

## 7.2.1 (August 25, 2023)

#### BUG FIXES:

* CloudWrapper
* Fixed build for 32-bit systems

## 7.2.0 (August 22, 2023)

#### FEATURES/ENHANCEMENTS:
Expand Down
2 changes: 1 addition & 1 deletion pkg/cloudwrapper/configurations.go
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ func (c ConfigLocationReq) Validate() error {
func (c Capacity) Validate() error {
return validation.Errors{
"Unit": validation.Validate(c.Unit, validation.Required, validation.In(UnitGB, UnitTB).Error(fmt.Sprintf("value '%s' is invalid. Must be one of: '%s', '%s'", c.Unit, UnitGB, UnitTB))),
"Value": validation.Validate(c.Value, validation.Required, validation.Min(1), validation.Max(10000000000)),
"Value": validation.Validate(c.Value, validation.Required, validation.Min(1), validation.Max(int64(10000000000))),
}.Filter()
}

Expand Down

0 comments on commit 035f595

Please sign in to comment.