Gianpaolo Coro 2016-09-29 10:52:56 +00:00
parent b67804bf15
commit 9a66017997
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);