Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
darunrs committed Aug 1, 2024
1 parent 5491755 commit dd67c7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coordinator/src/registry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ impl RegistryImpl {
if let QueryResponseKind::CallResult(call_result) = response.kind {
// Handle case where call returns successfully but returns null due to not matching
let raw_json: Value = serde_json::from_slice(&call_result.result)
.context("Failed to deserialzie config from JSON provided by RPC call")?;
.context("Failed to deserialize config from JSON provided by RPC call")?;
if raw_json.is_null() {
return Ok(None);
}
Expand Down

0 comments on commit dd67c7b

Please sign in to comment.