Hi,
We are getting 503:The Service is temporarily unavailable : HttpAdaptorException. while trying to connect tagert endpoint from prod env.
The same target endpoint we were able to hit from QA env.
Firewall and all other rules were already taken care of.
This is definitely a connection issue but what I am not able to figure out.
Also we are checking for ‘environment.name’ and then changing IP address to target prod ip address
context.setVariable(“target.copy.pathsuffix”, false);
var targetserver = context.getVariable(“target.url”);
var env_name = context.getVariable(“environment.name”);
env_name = env_name.trim();
if(env_name==“it-beta”)
{ targetserver = targetserver.replace(“10..**.7", "10..**.8”); context.setVariable(“target.url”, targetserver); }
