Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

927 go 122 upgrade check list #994

Merged
merged 9 commits into from
Sep 3, 2024
Merged

Conversation

smallhive
Copy link
Contributor

Closes #927

api/auth/center_test.go Outdated Show resolved Hide resolved
api/handler/encryption_test.go Show resolved Hide resolved
api/handler/object_list_test.go Outdated Show resolved Hide resolved
api/handler/object_list_test.go Outdated Show resolved Hide resolved
api/handler/s3encoder.go Outdated Show resolved Hide resolved
internal/neofs/tree.go Outdated Show resolved Hide resolved
internal/neofs/tree.go Outdated Show resolved Hide resolved
internal/neofs/tree.go Outdated Show resolved Hide resolved
internal/neofs/tree.go Outdated Show resolved Hide resolved
go.mod Show resolved Hide resolved
Closes #927.

Signed-off-by: Evgenii Baidakov <[email protected]>
Copy link
Member

@roman-khimov roman-khimov left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Now slices.Concat commit is not just about Concat.

@@ -432,7 +433,7 @@ func TestAwsEncodedWithRequest(t *testing.T) {
func chunkSlice(payload []byte, chunkSize int) [][]byte {
var result [][]byte

for i := 0; i < len(payload); i += chunkSize {
for i := range len(payload) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This doesn't seem to be correct, we were iterating with += chunkSize steps.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Damn, updated

Signed-off-by: Evgenii Baidakov <[email protected]>
SA1019: grpc.Dial is deprecated: use NewClient instead.  Will be supported throughout 1.x.

Signed-off-by: Evgenii Baidakov <[email protected]>
@smallhive
Copy link
Contributor Author

Now slices.Concat commit is not just about Concat.

Renamed commit text

@roman-khimov roman-khimov merged commit 79f7414 into master Sep 3, 2024
15 of 16 checks passed
@roman-khimov roman-khimov deleted the 927-go-122-upgrade-check-list branch September 3, 2024 14:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Go 1.22 upgrade check list
2 participants