0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-02-08 16:18:11 -05:00

💄 Add minor cosmetic improvement to worker ns

This commit is contained in:
Andrey Antukh 2024-02-05 20:11:20 +01:00
parent 275c8b5860
commit 0e380a97cc

View file

@ -643,8 +643,12 @@
(def ^:private
sql:remove-not-started-tasks
"delete from task
where name=? and queue=? and label=? and status = 'new' and scheduled_at > now()")
"DELETE FROM task
WHERE name=?
AND queue=?
AND label=?
AND status = 'new'
AND scheduled_at > now()")
(s/def ::label string?)
(s/def ::task (s/or :kw keyword? :str string?))