-
Notifications
You must be signed in to change notification settings - Fork 15
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
Conversation
Closes #927. Signed-off-by: Evgenii Baidakov <[email protected]>
40af5e9
to
fb0a312
Compare
There was a problem hiding this 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
.
api/auth/center_test.go
Outdated
@@ -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) { |
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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]>
fb0a312
to
fe6149d
Compare
Signed-off-by: Evgenii Baidakov <[email protected]>
Signed-off-by: Evgenii Baidakov <[email protected]>
Signed-off-by: Evgenii Baidakov <[email protected]>
Signed-off-by: Evgenii Baidakov <[email protected]>
Signed-off-by: Evgenii Baidakov <[email protected]>
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]>
fe6149d
to
0e2cedd
Compare
Renamed commit text |
Closes #927