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
This test is trying to set the FD limit higher than your OS's maximum allowed. The problem is that on MacOS this maximum allowed is at the maximum int64 value (i.e. unlimited), and we're experiencing integer wrap around.
Solution:
I am working on a fix now. The fix is based on changing the util code to use uint64 instead of int64, and adding some error conditions to the FreeBSD code.
PR incoming.
The text was updated successfully, but these errors were encountered:
Version information:
go-ipfs version: 0.4.18-dev-
Repo version: 7
System version: amd64/darwin
Golang version: go1.10.3
Type:
Bug
Description:
This test can be found here.
This test is trying to set the FD limit higher than your OS's maximum allowed. The problem is that on MacOS this maximum allowed is at the maximum int64 value (i.e. unlimited), and we're experiencing integer wrap around.
Solution:
I am working on a fix now. The fix is based on changing the util code to use uint64 instead of int64, and adding some error conditions to the FreeBSD code.
PR incoming.
The text was updated successfully, but these errors were encountered: