You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
logger.LogInformation(String.Format(" Adding IP {0} to the allowed hosts",resolvedIP.ToString()));
52
+
_allowedIPs.Add(resolvedIP.ToString());
53
+
}
42
54
}
43
55
}
56
+
catch(SocketExceptionex)
57
+
{
58
+
logger.LogError(ex,String.Format("Failed to resolve host {0} with exception: {1}. This host will not be added to the list of allowed IPs.",host,ex.Message));
returnnewObjectResult(String.Format("One or more of the following environment variables are missing: {0}.",_mandatoryConfigurationEntries))
39
+
returnnewObjectResult(String.Format("One or more of the following environment variables are missing: {0}.",String.Join(",",_mandatoryConfigurationEntries)))
returnnewObjectResult(String.Format("One or more of the following environment variables is not an Integer: {0}.",String.Join(",",_mandatoryConfigurationEntries)))
returnnewObjectResult(String.Format("One or more of the following environment variables are missing: {0}.",_mandatoryConfigurationEntries))
33
+
returnnewObjectResult(String.Format("One or more of the following environment variables are missing: {0}.",String.Join(",",_mandatoryConfigurationEntries)))
returnnewObjectResult(String.Format("One or more of the following environment variables are missing: {0}.",_mandatoryConfigurationEntries))
39
+
returnnewObjectResult(String.Format("One or more of the following environment variables are missing: {0}.",String.Join(",",_mandatoryConfigurationEntries)))
returnnewObjectResult(String.Format("One or more of the following environment variables is not an Integer: {0}.",String.Join(",",_mandatoryConfigurationEntries)))
0 commit comments