Fix deserialization of RPC errors in HttpSender (#19110)

Fixes #15576
This commit is contained in:
Brian Anderson
2021-08-09 12:45:00 -05:00
committed by GitHub
parent f5ce2c2d63
commit e4b66a5913
2 changed files with 33 additions and 1 deletions

View File

@@ -67,7 +67,6 @@ impl HttpSender {
struct RpcErrorObject {
code: i64,
message: String,
data: serde_json::Value,
}
impl RpcSender for HttpSender {