mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
fix(rpc_server): remember to set ipc config for auth server (#8120)
Co-authored-by: dzung <dzung@caliber.build>
This commit is contained in:
@ -475,7 +475,9 @@ impl RethRpcConfig for RpcServerArgs {
|
||||
|
||||
let mut builder = AuthServerConfig::builder(jwt_secret).socket_addr(address);
|
||||
if self.auth_ipc {
|
||||
builder = builder.ipc_endpoint(self.auth_ipc_path.clone());
|
||||
builder = builder
|
||||
.ipc_endpoint(self.auth_ipc_path.clone())
|
||||
.with_ipc_config(self.ipc_server_builder());
|
||||
}
|
||||
Ok(builder.build())
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user