Feature/24026 #3

Merged
giancarlo.panichi merged 194 commits from Feature/24026 into master 2023-11-09 19:12:54 +01:00
2 changed files with 7 additions and 5 deletions
Showing only changes of commit 9f7778b5ce - Show all commits

View File

@ -77,11 +77,12 @@ public class ProductionPublishingJob extends DMPMJob {
public String buildInfo(){
return
"\n"+
"Algorithm details:"+
"\n"+
"User: "+this.algorithm.getFullname()+"\n"+
"Algorithm name: "+this.algorithm.getName()+"\n"+
"Caller VRE: "+ScopeProvider.instance.get()+"\n"+
"Target VRE: "+ targetVREToken;
"Target VRE: "+targetVREName+"\n";
***REMOVED***

View File

@ -94,7 +94,7 @@ public class StagingJob extends DMPMJob {
this.algorithm.getFullname(), "Proto");
this.getStatus(9);
sm.sendNotification(nh.getSuccessSubject() + "for "+this.algorithm.getName()+ " algorithm", nh.getSuccessBody(this.buildInfo()));
sm.sendNotification(nh.getSuccessSubject() + " for "+this.algorithm.getName()+ " algorithm", nh.getSuccessBody(this.buildInfo()));
return;
***REMOVED*** else
this.getStatus(2);
@ -144,12 +144,13 @@ public class StagingJob extends DMPMJob {
ServiceConfiguration a = new ServiceConfiguration();
return
"\n"+
"Algorithm details:"+
"\n"+
"User: "+this.algorithm.getFullname()+"\n"+
"Algorithm name: "+this.algorithm.getName()+"\n"+
"Staging DataMiner Host: "+ a.getStagingHost()+
"Caller VRE: "+rProtoVREName+
"Target VRE: "+rProtoVREName;
"Staging DataMiner Host: "+ a.getStagingHost()+"\n"+
"Caller VRE: "+rProtoVREName+"\n"+
"Target VRE: "+rProtoVREName+"\n";
***REMOVED***