Skip to content

Commit b953902

Browse files
fix: typo
1 parent 5aff6e3 commit b953902

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

coderd/database/queries.sql.go

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

coderd/database/queries/workspaces.sql

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -590,15 +590,15 @@ WHERE
590590
workspaces.dormant_at IS NULL AND
591591
workspace_builds.transition = 'start'::workspace_transition AND (
592592
users.status = 'suspended'::user_status OR (
593-
workspace_builds.deadline != '0001-01-01 00:00:00+00'::timestamp AND
593+
workspace_builds.deadline != '0001-01-01 00:00:00+00'::timestamptz AND
594594
workspace_builds.deadline < @now :: timestamptz
595595
)
596596
)
597597
) OR
598598

599599
-- A workspace may be eligible for autostart if the following are true:
600600
-- * The workspace's owner is active.
601-
-- * The provisioner job did not failed.
601+
-- * The provisioner job did not fail.
602602
-- * The workspace build was a stop transition.
603603
-- * The workspace has an autostart schedule.
604604
(
@@ -610,8 +610,8 @@ WHERE
610610

611611
-- A workspace may be eligible for dormant stop if the following are true:
612612
-- * The workspace is not dormant.
613-
-- * The template has set a time til dormant.
614-
-- * The workspace has been unused for longer than the time til dormancy.
613+
-- * The template has set a time 'til dormant.
614+
-- * The workspace has been unused for longer than the time 'til dormancy.
615615
(
616616
workspaces.dormant_at IS NULL AND
617617
templates.time_til_dormant > 0 AND
@@ -622,7 +622,7 @@ WHERE
622622
-- * The workspace is dormant.
623623
-- * The workspace is scheduled to be deleted.
624624
-- * If there was a prior attempt to delete the workspace that failed:
625-
-- * This attempt was at least 24 hours ago>
625+
-- * This attempt was at least 24 hours ago.
626626
(
627627
workspaces.dormant_at IS NOT NULL AND
628628
workspaces.deleting_at IS NOT NULL AND

0 commit comments

Comments
 (0)