andygrove commented on PR #1059:
URL: 
https://github.com/apache/datafusion-ballista/pull/1059#issuecomment-2374050522

   I managed to get it working. In the scheduler `poll_work` method, you need 
to change ..
   
   ```
           let remote_addr = request.remote_addr();
   ```
   
   to 
   
   ```
           let remote_addr = request
               .extensions()
               .get::<ConnectInfo<SocketAddr>>()
               .cloned();
   ```
   
   I saw a similar change in register_executor


-- 
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: github-unsubscr...@datafusion.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org
For additional commands, e-mail: github-h...@datafusion.apache.org

Reply via email to