Closed
Bug 1639981
Opened 5 years ago
Closed 5 years ago
[google provider] operations are only checked once
Categories
(Taskcluster :: Services, defect)
Taskcluster
Services
Tracking
(Not tracked)
RESOLVED
MOVED
People
(Reporter: dustin, Unassigned)
Details
Once handleOperation
is called for an instance, the instance state is set to STOPPED, which means that checkWorker won't be called again. So this comment
// Let's check back in on the next provisioning iteration if unfinished
if (operation.status !== 'DONE') {
return true;
}
is incorrect. However, handleOperation
is only called when the instance is not found, so perhaps the status is never not DONE?
I'm not sure if the comment should be updated, or if there's an error here that means we will be missing error messages that might be useful to the user.
Comment 1•5 years ago
|
||
Moved to #2885 in taskcluster/taskcluster
Status: NEW → RESOLVED
Closed: 5 years ago
Resolution: --- → MOVED
You need to log in
before you can comment on or make changes to this bug.
Description
•