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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]