forked from ceph/go-ceph
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
go1.19 is not supported anymore, and certain packages (at least aws-sdk-go-v2) require go1.21 or newer. Revive complains about the use of `max` as variable name. go1.21 contains the `max()` function, so it is better to rename the variable. Signed-off-by: Niels de Vos <[email protected]>
- Loading branch information
Showing
3 changed files
with
30 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
module github.com/ceph/go-ceph | ||
|
||
go 1.19 | ||
go 1.21 | ||
|
||
require ( | ||
github.com/aws/aws-sdk-go v1.55.5 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters