Hi guys,

My testers told me the SBA-gui (1.2.2-RELEASE) is displaying incorrect start time for Steps (I'm on GMT+1). This seem to be a semi-known issue fixed for jobs (https://jira.springsource.org/browse/BATCHADM-29) but my guess is that the fix is not implemented for steps. The following code can be found in StepExecutionController

Code:
for (StepExecution stepExecution : jobService.getStepExecutions(jobExecutionId)) {
    result.add(new StepExecutionInfo(stepExecution, TimeZone.getTimeZone("GMT")));
}
JobExecution jobExecution = jobService.getJobExecution(jobExecutionId);
model.addAttribute(new JobExecutionInfo(jobExecution, timeZone));
The hard coded "GMT" seem to ruin my day. Should I raise a JIRA-issue?

br
Svante