Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Avoid integer overrun in NIOHTTPResponsiveness (#247)
We use 8*10^9 in `NIOHTTPResponsiveness` however this number will overrun the integer size on platforms with 32-bit pointer-width such as watchOS. This change drops down to use 1*10^9 on such platforms.
- Loading branch information