Would patching it out like this cause any issues?
Aka an one line patch in ProcessIp.php at line 22:
- $ipAddress = Arr::get($request->getServerParams(), 'REMOTE_ADDR', '127.0.0.1');
+ $ipAddress = '127.0.0.1';
This might temporarily solve the issue without the need to touch other parts of the codebase?