Fix JdbcStepExecutionDaoTests

This commit is contained in:
Mahmoud Ben Hassine
2025-06-04 00:01:49 +02:00
parent b88e7d70e9
commit 0164216bff

View File

@@ -328,7 +328,7 @@ public class JdbcStepExecutionDao extends AbstractJdbcBatchMetadataDao implement
@Nullable
public StepExecution getStepExecution(JobExecution jobExecution, Long stepExecutionId) {
try (Stream<StepExecution> stream = getJdbcTemplate().queryForStream(getQuery(GET_STEP_EXECUTION),
new StepExecutionRowMapper(jobExecution), jobExecution.getId(), stepExecutionId)) {
new StepExecutionRowMapper(jobExecution), stepExecutionId)) {
return stream.findFirst().orElse(null);
}
}