Skip to content
Snippets Groups Projects
Commit c64af39d authored by ale's avatar ale
Browse files

fix remote ip detection for load balancer

RemoteAddr again.
parent 0a8e1bce
No related branches found
No related tags found
No related merge requests found
......@@ -135,7 +135,8 @@ type httpRequestContext struct {
}
func (r *httpRequestContext) RemoteAddr() net.IP {
return net.ParseIP(r.req.RemoteAddr)
host, _, _ := net.SplitHostPort(r.req.RemoteAddr)
return net.ParseIP(host)
}
// Return an active node, chosen according to the current load
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment