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
When the JSON-RPC address is in use, Substrate retries with a random port. This work fine with jsonrpc, but we unfortunately erase std::io errors type with anyhow.
We should have a new error variant(s) just for AddressInUse | PermissionDenied. Bonus points if we can either not consume the builder, or return the builder in the error for easy retries. Alternatively support the strategy of trying random port directly into jsonrpsee.
The text was updated successfully, but these errors were encountered:
When the JSON-RPC address is in use, Substrate retries with a random port. This work fine with
jsonrpc
, but we unfortunately erase std::io errors type with anyhow.We should have a new error variant(s) just for
AddressInUse | PermissionDenied
. Bonus points if we can either not consume the builder, or return the builder in the error for easy retries. Alternatively support the strategy of trying random port directly into jsonrpsee.The text was updated successfully, but these errors were encountered: