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
Since we use uint64 everywhere, it should be replaced with (str, 10, 64). Or numbers should be transformed to uint32 since version numbers are not likely to be greater than max uint32.
The text was updated successfully, but these errors were encountered:
Strconv allows to call ParseUint for 32bit number instead of 64bit with third argument so it would be later converted to 32bit number:
cartridge-cli/cli/common/tarantool.go
Line 67 in 479a592
Since we use uint64 everywhere, it should be replaced with
(str, 10, 64)
. Or numbers should be transformed to uint32 since version numbers are not likely to be greater than max uint32.The text was updated successfully, but these errors were encountered: