Skip to content

Commit

Permalink
update ttrpc to 0.8.0
Browse files Browse the repository at this point in the history
Update ttrpc to 0.8.0

Signed-off-by: James Sturtevant <jstur@microsoft.com>
  • Loading branch information
jsturtevant committed Jun 23, 2023
1 parent 5c96c0f commit 128337a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/shim-protos/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ homepage.workspace = true

[dependencies]
protobuf = "3.1"
ttrpc = "0.7"
ttrpc = "0.8"
async-trait = { version = "0.1.48", optional = true }

[build-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/shim/src/synchronous/publisher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ impl RemotePublisher {
fn connect(address: impl AsRef<str>) -> Result<Client> {
let fd = connect(address)?;
// Client::new() takes ownership of the RawFd.
Ok(Client::new(fd))
Client::new(fd).map_err(|err| err.into())
}

/// Publish a new event.
Expand Down

0 comments on commit 128337a

Please sign in to comment.