We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To Reproduce
Expected behaviour BulkImportJob status changed to RUNNING. Activating ready jobs again doesn't trigger new job.
Expected behaviour BulkImportJob status stays READY. Activating ready jobs again triggers new job.
BulkImportJobJson job = new BulkImportJobJson(); job.setProcessingMode(JobFileRowProcessingModeEnum.FHIR_TRANSACTION); job.setJobDescription("testFlow_TransactionRows"); job.setBatchSize(3); String jobId = bulkDataImportSvc.createNewJob(job, files); bulkDataImportSvc.markJobAsReadyForActivation(jobId); ActivateJobResult activateJobOutcome = bulkDataImportSvc.activateNextReadyJob(); assertTrue(activateJobOutcome.isActivated); // validate that job changed status from READY to RUNNING assertEquals(BulkImportJobStatusEnum.RUNNING, bulkDataImportSvc.getJobStatus(jobId).getStatus());
The text was updated successfully, but these errors were encountered:
volodymyr-korzh
Successfully merging a pull request may close this issue.
To Reproduce
Expected behaviour
BulkImportJob status changed to RUNNING. Activating ready jobs again doesn't trigger new job.
Expected behaviour
BulkImportJob status stays READY. Activating ready jobs again triggers new job.
The text was updated successfully, but these errors were encountered: