Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
dyc3 committed Dec 23, 2023
1 parent a708f3c commit 1d27786
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions crates/ott-balancer/src/discovery/harness.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,7 @@ async fn do_harness_discovery(
match ws.next().await {
Some(Ok(msg)) => {
let Ok(text) = msg.into_text() else {
error!(
"expected text message from harness, got something else"
);
error!("expected text message from harness, got something else");
continue;
};
let Ok(msg) = serde_json::from_str(text.as_str()) else {
Expand Down

0 comments on commit 1d27786

Please sign in to comment.