}
@Override
public void update(StepExecution stepExecution) {
try {
UpdateWithStepExecutionReq request = JobRepositoryRpcFactory.buildUpdateWithStepExecutionReq(stepExecution);
UpdateWithStepExecutionRes response = (UpdateWithStepExecutionRes) getAppmasterScOperations().doMindRequest(request);
stepExecution.setId(response.getId());
stepExecution.setVersion(response.getVersion());
} catch (Exception e) {
throw convertException(e);