Gianpaolo Coro 2016-09-29 10:54:00 +00:00
parent 9a66017997
commit 6b24bc28dd
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ public abstract class StandardLocalInfraAlgorithm extends StandardLocalExternalA
String serviceAddress = InfraRetrieval.findEmailingSystemAddress(config.getGcubeScope());
String requestForMessage = serviceAddress + "/messages/writeMessageToUsers" + "?gcube-token=" + config.getGcubeToken();
requestForMessage = requestForMessage.replace("http://", "https://").replace("80", ""); // remove the port (or set it to 443) otherwise you get an SSL error
requestForMessage = requestForMessage.replace("http://", "https://").replace(":80", ""); // remove the port (or set it to 443) otherwise you get an SSL error
AnalysisLogger.getLogger().debug("Emailing System->Request url is going to be " + requestForMessage);