Skip to content

Commit

Permalink
fix: Remove needless reference
Browse files Browse the repository at this point in the history
  • Loading branch information
carols10cents committed Jan 14, 2022
1 parent d79197d commit a3ab10f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/connection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ where
},
};

match broker.metadata_request(&request_params).await {
match broker.metadata_request(request_params).await {
Ok(response) => ControlFlow::Break(Ok(response)),
Err(e @ RequestError::Poisoned(_) | e @ RequestError::IO(_))
if broker_override.is_none() =>
Expand Down

0 comments on commit a3ab10f

Please sign in to comment.