This commit is contained in:
Nunzio Andrea Galante 2017-07-13 16:38:03 +00:00
parent 536e5679e3
commit 93cb62ab99
1 changed files with 14 additions and 8 deletions

View File

@ -28,7 +28,7 @@ public class StagingJob extends DMPMJob ***REMOVED***
public StagingJob(SVNUpdater svnUpdater, Algorithm algorithm,
Cluster stagingCluster, /* Cluster rProtoCluster, */
String rProtoVREName) ***REMOVED***
String rProtoVREName) throws FileNotFoundException, UnsupportedEncodingException ***REMOVED***
super(svnUpdater);
this.jobLogs = new File(
System.getProperty("user.home") + File.separator + "dataminer-pool-manager" + File.separator + "jobs");
@ -38,6 +38,13 @@ public class StagingJob extends DMPMJob ***REMOVED***
this.stagingCluster = stagingCluster;
***REMOVED*** this.rProtoCluster = rProtoCluster;
this.rProtoVREName = rProtoVREName;
File m = new File(this.jobLogs + File.separator + this.id + "_exitStatus");
PrintWriter writer = new PrintWriter(m, "UTF-8");
writer.println(this.getStatus(0));
writer.close();
***REMOVED***
***REMOVED***
@ -66,12 +73,12 @@ public class StagingJob extends DMPMJob ***REMOVED***
int ret = this.executeAnsibleWorker(createWorker(this.algorithm, this.stagingCluster, false, "root"));
Integer s = null;
s = Integer.valueOf(ret);
if (s == null) ***REMOVED***
this.getStatus(0);
***REMOVED***
***REMOVED*** Integer s = null;
***REMOVED*** s = Integer.valueOf(ret);
***REMOVED***
***REMOVED*** if (s == null) ***REMOVED***
***REMOVED*** this.getStatus(0);
***REMOVED*** ***REMOVED***
if (ret != 0) ***REMOVED***
this.getStatus(2);
@ -104,7 +111,6 @@ public class StagingJob extends DMPMJob ***REMOVED***
public String getStatus(int exitstatus) throws FileNotFoundException, UnsupportedEncodingException ***REMOVED***
File m = new File(this.jobLogs + File.separator + this.id + "_exitStatus");
PrintWriter writer = new PrintWriter(m, "UTF-8");
String response = "";