adamreeve commented on PR #44377:
URL: https://github.com/apache/arrow/pull/44377#issuecomment-2425385883

   This change in arrow-rs fixes the tests for me:
   ```diff
   --- 
a/arrow-integration-testing/src/flight_server_scenarios/integration_test.rs
   +++ 
b/arrow-integration-testing/src/flight_server_scenarios/integration_test.rs
   @@ -48,9 +48,10 @@ type Result<T = (), E = Error> = std::result::Result<T, 
E>;
    /// Run a scenario that tests integration testing.
    pub async fn scenario_setup(port: u16) -> Result {
        let addr = super::listen_on(port).await?;
   +    let resolved_port = addr.port();
    
        let service = FlightServiceImpl {
   -        server_location: format!("grpc+tcp://{addr}"),
   +        server_location: format!("grpc+tcp://localhost:{resolved_port}"),
            ..Default::default()
        };
        let svc = FlightServiceServer::new(service);
   
   ```
   
   But I'm not 100% sure this isn't something the C# client should handle, 
given the other clients seem OK with it.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to