http.client_ip was added to the Growth schemas in T287121. When verifying events flowing in for those schemas, HomepageVisit and ServerSideAccountCreation are recording http.client_ip as 127.0.0.1 for all events. Here's an example query, which returns no rows:
SELECT
*
FROM event.serversideaccountcreation
WHERE year = 2021
AND month = 8
AND day >= 12
AND http.client_ip IS NOT NULL
AND http.client_ip != "127.0.0.1"ServerSideAccountCreation and HomepageVisit are run server-side. The other Growth schemas are client-side and do not appear to be affected by this.
Expected behaviour: http.client_ip records the client IP address and associated geolocation information as for other schemas.