@@ -3416,7 +3416,7 @@ private DataValidation submitValidationJob(@NotNull ExperimentAnnotations experi
34163416 validation = DataValidationManager .saveDataValidation (validation , user );
34173417 PxDataValidationPipelineJob job = new PxDataValidationPipelineJob (info , root , experimentAnnotations , validation .getId ());
34183418 PipelineService .get ().queueJob (job );
3419- Integer jobId = PipelineService .get ().getJobId (user , container , job .getJobGUID ());
3419+ Long jobId = PipelineService .get ().getJobId (user , container , job .getJobGUID ());
34203420 if (jobId == null )
34213421 {
34223422 errors .reject (ERROR_MSG , "Data validation job was not submitted for experiment Id: " + experimentAnnotations .getId ());
@@ -3487,7 +3487,7 @@ public ModelAndView getView(PxDataValidationForm form, BindException errors)
34873487 return new SimpleErrorView (errors , false );
34883488 }
34893489
3490- int jobId = validation .getJobId ();
3490+ long jobId = validation .getJobId ();
34913491 PipelineStatusFile pipelineJobStatus = PipelineService .get ().getStatusFile (jobId );
34923492 JournalSubmission js = SubmissionManager .getNewestJournalSubmission (_experimentAnnotations );
34933493 JspView view ;
@@ -3585,7 +3585,7 @@ public Object execute(PxDataValidationForm form, BindException errors) throws Ex
35853585 DataValidation validation = DataValidationManager .getValidation (form .getValidationId (), getContainer ());
35863586 if (validation != null )
35873587 {
3588- int jobId = validation .getJobId ();
3588+ long jobId = validation .getJobId ();
35893589 PipelineStatusFile status = PipelineService .get ().getStatusFile (jobId );
35903590 if (status != null )
35913591 {
@@ -5804,7 +5804,7 @@ public boolean handlePost(NewExperimentAnnotationsForm form, BindException error
58045804
58055805 // Add all runs in the folder
58065806 List <? extends ExpRun > runsInFolder = ExperimentService .get ().getExpRuns (getContainer (), null , null );
5807- int [] runIds = new int [runsInFolder .size ()];
5807+ long [] runIds = new long [runsInFolder .size ()];
58085808 int i = 0 ;
58095809 for (ExpRun run : runsInFolder )
58105810 {
0 commit comments