mirror of
https://github.com/coder/coder.git
synced 2026-09-24 15:04:27 +08:00
fix: allow lifecycle code path to retry failed stop jobs (#26203)
Co-authored-by: Mux <mux@coder.com>
This commit is contained in:
Generated
+8
-3
@@ -36236,15 +36236,20 @@ WHERE
|
||||
END
|
||||
) OR
|
||||
|
||||
-- A workspace may be eligible for failed stop if the following are true:
|
||||
-- A workspace may be eligible for failed cleanup if the following are true:
|
||||
-- * The template has a failure ttl set.
|
||||
-- * The workspace build was a start transition.
|
||||
-- * The workspace build was a start or stop transition. A failed start
|
||||
-- is cleaned up by stopping it; a failed stop is retried by issuing
|
||||
-- another stop.
|
||||
-- * The provisioner job failed.
|
||||
-- * The provisioner job had completed.
|
||||
-- * The provisioner job has been completed for longer than the failure ttl.
|
||||
(
|
||||
templates.failure_ttl > 0 AND
|
||||
workspace_builds.transition = 'start'::workspace_transition AND
|
||||
(
|
||||
workspace_builds.transition = 'start'::workspace_transition OR
|
||||
workspace_builds.transition = 'stop'::workspace_transition
|
||||
) AND
|
||||
provisioner_jobs.job_status = 'failed'::provisioner_job_status AND
|
||||
provisioner_jobs.completed_at IS NOT NULL AND
|
||||
($1 :: timestamptz) - provisioner_jobs.completed_at > (INTERVAL '1 millisecond' * (templates.failure_ttl / 1000000))
|
||||
|
||||
@@ -786,15 +786,20 @@ WHERE
|
||||
END
|
||||
) OR
|
||||
|
||||
-- A workspace may be eligible for failed stop if the following are true:
|
||||
-- A workspace may be eligible for failed cleanup if the following are true:
|
||||
-- * The template has a failure ttl set.
|
||||
-- * The workspace build was a start transition.
|
||||
-- * The workspace build was a start or stop transition. A failed start
|
||||
-- is cleaned up by stopping it; a failed stop is retried by issuing
|
||||
-- another stop.
|
||||
-- * The provisioner job failed.
|
||||
-- * The provisioner job had completed.
|
||||
-- * The provisioner job has been completed for longer than the failure ttl.
|
||||
(
|
||||
templates.failure_ttl > 0 AND
|
||||
workspace_builds.transition = 'start'::workspace_transition AND
|
||||
(
|
||||
workspace_builds.transition = 'start'::workspace_transition OR
|
||||
workspace_builds.transition = 'stop'::workspace_transition
|
||||
) AND
|
||||
provisioner_jobs.job_status = 'failed'::provisioner_job_status AND
|
||||
provisioner_jobs.completed_at IS NOT NULL AND
|
||||
(@now :: timestamptz) - provisioner_jobs.completed_at > (INTERVAL '1 millisecond' * (templates.failure_ttl / 1000000))
|
||||
|
||||
Reference in New Issue
Block a user