mirror of
https://github.com/apache/cloudstack.git
synced 2025-11-03 04:12:31 +01:00
CLOUDSTACK-5669: Always retrieve the most recent job result in OutComeImpl
This commit is contained in:
parent
737a382c38
commit
832c8e4728
@ -51,7 +51,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…
x
Reference in New Issue
Block a user