gs.getSession().getClientIP() is not returning correct IP address information in case of Session switchIssue Using gs.getSession().getClientIP() to get the user session IP may return a wrong IP address in case there was a session switch.ResolutionIt's recommended to use 'GlideTransaction.get().getRemoteAddr()' instead of 'gs.getSession().getClientIP()' to fetch the correct IP address in such cases.