mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
go vet yourself (#397)
go vet caught some nifty bugs. so fixed those here, and also made it so that we vet everything from now on since the robots seem to do a better job of vetting than we have managed to. also adds gofmt check to circle. could move this to the test.sh script (didn't want a script calling a script, because $reasons) and it's nice and isolated in its own little land as it is. side note, changed the script so it runs in 100ms instead of 3s, i think find is a lot faster than go list. attempted some minor cleanup of various scripts
This commit is contained in:
committed by
Travis Reeder
parent
d16d449626
commit
8a59654582
@@ -26,10 +26,10 @@ func SetMachineId(id uint64) {
|
||||
// with an addition that net.IP must be a ipv4 address.
|
||||
func SetMachineIdHost(addr net.IP, port uint16) {
|
||||
var machineId uint64 // 48 bits
|
||||
machineId |= uint64(addr[0] << 40)
|
||||
machineId |= uint64(addr[1] << 32)
|
||||
machineId |= uint64(addr[2] << 24)
|
||||
machineId |= uint64(addr[3] << 16)
|
||||
machineId |= uint64(addr[0]) << 40
|
||||
machineId |= uint64(addr[1]) << 32
|
||||
machineId |= uint64(addr[2]) << 24
|
||||
machineId |= uint64(addr[3]) << 16
|
||||
machineId |= uint64(port)
|
||||
|
||||
SetMachineId(machineId)
|
||||
|
||||
Reference in New Issue
Block a user