Skip to content

Commit

Permalink
fix ref
Browse files Browse the repository at this point in the history
  • Loading branch information
yorktown-class committed Jul 23, 2023
1 parent 53d1f47 commit 111a2d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ impl<T: 'static + Transport> ControlChannel<T> {
let s = toml::to_string(&self.service).unwrap();
let buf = s.as_bytes();
conn.write_u32(buf.len() as u32).await?;
conn.write_all(&buf).await?;
conn.write_all(buf).await?;
conn.flush().await?;
}
v => {
Expand Down

0 comments on commit 111a2d9

Please sign in to comment.