mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-5669: Always retrieve the most recent job result in OutComeImpl
This commit is contained in:
parent
6e57067859
commit
7c8ef7836c
|
|
@ -50,7 +50,9 @@ public class OutcomeImpl<T> implements Outcome<T> {
|
|||
|
||||
@Override
|
||||
public AsyncJob getJob() {
|
||||
return _job;
|
||||
// always reload job so that we retrieve the latest job result
|
||||
AsyncJob job = s_jobMgr.getAsyncJob(_job.getId());
|
||||
return job;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Reference in New Issue