Gianpaolo Coro 2016-09-29 10:55:29 +00:00
parent 6b24bc28dd
commit 809c7adebb
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ public abstract class StandardLocalInfraAlgorithm extends StandardLocalExternalA
public void sendNotificationEmail(String subject, String body) throws Exception { public void sendNotification(String subject, String body) throws Exception {
AnalysisLogger.getLogger().debug("Emailing System->Starting request of email in scope "+config.getGcubeScope()); AnalysisLogger.getLogger().debug("Emailing System->Starting request of email in scope "+config.getGcubeScope());

View File

@ -59,7 +59,7 @@ public class TestEmailingSystem {
} }
}; };
infraAlg.setConfiguration(config); infraAlg.setConfiguration(config);
infraAlg.sendNotificationEmail("hello&ernrinndnknd","test++èèééé222"); infraAlg.sendNotification("hello&ernrinndnknd","test++èèééé222");
} }