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
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgecarleitao committed Mar 5, 2022
1 parent 3b55eeb commit cf605aa
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 cf605aa

Please sign in to comment.