We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
jsonrpsee/core/src/server/rpc_module.rs
Line 469 in 014f771
According to tokio's docs. Semaphore::MAX_PERMITS is usize::MAX >> 3. u32::MAX will cause panic on 32-bit platform.
usize::MAX >> 3
u32::MAX
The text was updated successfully, but these errors were encountered:
Yes, nice catch it will be fixed once #1034 is merged.
Sorry, something went wrong.
Semaphore::(u32::MAX)
Successfully merging a pull request may close this issue.
jsonrpsee/core/src/server/rpc_module.rs
Line 469 in 014f771
According to tokio's docs. Semaphore::MAX_PERMITS is
usize::MAX >> 3
.u32::MAX
will cause panic on 32-bit platform.The text was updated successfully, but these errors were encountered: