You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The latest release (v2.3.0) can't be compiled with GOARCH=386 due to changes introduced by #747.
The error message is:
go-grpc-middleware/[email protected]/interceptors/retry/backoff.go:35:10: cannot use 1 << 62 (untyped int constant 4611686018427387904) as uint value in return statement (overflows)
I'd like to work on a fix for it, if this is relevant, of course.
The text was updated successfully, but these errors were encountered:
A 32bit binary could not be built because `1 << 62` would overflow the
return `uint` type, as it is an architecture dependent type.
Closesgrpc-ecosystem#752
Hi!
The latest release (v2.3.0) can't be compiled with
GOARCH=386
due to changes introduced by #747.The error message is:
I'd like to work on a fix for it, if this is relevant, of course.
The text was updated successfully, but these errors were encountered: