Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Commit

Permalink
Fixed integration test (#885)
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgecarleitao authored Mar 5, 2022
1 parent a4ca023 commit 39ff99c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ async fn consume_flight_location(
let mut location = location;
// The other Flight implementations use the `grpc+tcp` scheme, but the Rust http libs
// don't recognize this as valid.
location.uri = location.uri.replace("grpc+tcp://", "grpc://");
location.uri = location.uri.replace("grpc+tcp://", "http://");

let mut client = FlightServiceClient::connect(location.uri).await?;
let resp = client.do_get(ticket).await?;
Expand Down

0 comments on commit 39ff99c

Please sign in to comment.