common/fdlimit: Fix compilation error in freebsd, Raise() returns uint64 (#19141)

cast limit.Cur (int64) to uint64, fix test and compilation error
pull/19100/head
Enrique Fynn 6 years ago committed by Péter Szilágyi
parent fbedf62f3d
commit 628a0bde3f
  1. 2
      common/fdlimit/fdlimit_freebsd.go

@ -43,7 +43,7 @@ func Raise(max uint64) (uint64, error) {
if err := syscall.Getrlimit(syscall.RLIMIT_NOFILE, &limit); err != nil { if err := syscall.Getrlimit(syscall.RLIMIT_NOFILE, &limit); err != nil {
return 0, err return 0, err
} }
return limit.Cur, nil return uint64(limit.Cur), nil
} }
// Current retrieves the number of file descriptors allowed to be opened by this // Current retrieves the number of file descriptors allowed to be opened by this

Loading…
Cancel
Save