Comment 0 for bug 1515476

Revision history for this message
javeme (javaloveme) wrote :

Almost all of the async operations will update the task state, but the confirm_resize does not.

That would cause some trouble: our timer in the browser updates the instances based on the task state until it becomes none,
if the task state is none(any task is completed), we believe the status of an instance is stable, and there is no need to refresh the instance. But at the beginning of the confirm_resize, we did not update the task status, and the task state is still none,
so it cause we cannot know when it's completed unless we poll all of the instances of any state.

Moreover it should be at least consistent with the revert_resize,and the state RESIZE_CONFIRMING has been defined but not used.