@@ -3417,7 +3417,7 @@ private DataValidation submitValidationJob(@NotNull ExperimentAnnotations experi
34173417 validation = DataValidationManager .saveDataValidation (validation , user );
34183418 PxDataValidationPipelineJob job = new PxDataValidationPipelineJob (info , root , experimentAnnotations , validation .getId ());
34193419 PipelineService .get ().queueJob (job );
3420- Integer jobId = PipelineService .get ().getJobId (user , container , job .getJobGUID ());
3420+ Long jobId = PipelineService .get ().getJobId (user , container , job .getJobGUID ());
34213421 if (jobId == null )
34223422 {
34233423 errors .reject (ERROR_MSG , "Data validation job was not submitted for experiment Id: " + experimentAnnotations .getId ());
@@ -3488,7 +3488,7 @@ public ModelAndView getView(PxDataValidationForm form, BindException errors)
34883488 return new SimpleErrorView (errors , false );
34893489 }
34903490
3491- int jobId = validation .getJobId ();
3491+ long jobId = validation .getJobId ();
34923492 PipelineStatusFile pipelineJobStatus = PipelineService .get ().getStatusFile (jobId );
34933493 JournalSubmission js = SubmissionManager .getNewestJournalSubmission (_experimentAnnotations );
34943494 JspView view ;
@@ -3586,7 +3586,7 @@ public Object execute(PxDataValidationForm form, BindException errors) throws Ex
35863586 DataValidation validation = DataValidationManager .getValidation (form .getValidationId (), getContainer ());
35873587 if (validation != null )
35883588 {
3589- int jobId = validation .getJobId ();
3589+ long jobId = validation .getJobId ();
35903590 PipelineStatusFile status = PipelineService .get ().getStatusFile (jobId );
35913591 if (status != null )
35923592 {
@@ -5810,7 +5810,7 @@ public boolean handlePost(NewExperimentAnnotationsForm form, BindException error
58105810
58115811 // Add all runs in the folder
58125812 List <? extends ExpRun > runsInFolder = ExperimentService .get ().getExpRuns (getContainer (), null , null );
5813- int [] runIds = new int [runsInFolder .size ()];
5813+ long [] runIds = new long [runsInFolder .size ()];
58145814 int i = 0 ;
58155815 for (ExpRun run : runsInFolder )
58165816 {
0 commit comments