Change job when-run to create-date
authorFrank Duncan <frank@kank.net>
Sat, 11 Dec 2021 15:41:27 +0000 (09:41 -0600)
committerFrank Duncan <frank@kank.net>
Sat, 11 Dec 2021 15:41:27 +0000 (09:41 -0600)
src/main/base.lisp
src/main/server.lisp

index e47c0fb8858318e145c107b349f0253fc9eff3bf..cdceda1c34fb48ea10f5993d1874080c329fe39e 100644 (file)
@@ -10,7 +10,7 @@
 ; - :succeeded - job succeeded
 ; - :no-candle-file - no candle file was found
 ; - :in-progress - job is running
-(lame-db:defdbstruct job status sha when-run (project :join project))
+(lame-db:defdbstruct job status sha create-date (project :join project))
 
 ; in-git here refers to whether the branch exists in git.  As branches get deleted,
 ; this will get set to nil but we keep them around for historical reference
index 79246fb297daef8c2a39a3ba8cd23d55d063a0b4..7265a25cda03ad6b96c7d978d941acaa3a741d51 100644 (file)
@@ -47,7 +47,7 @@
        ((job
          (or
           (find sha (find-job-by-project project) :test #'string= :key #'job-sha)
-          (make-job :status :queued :sha sha :project project)))
+          (make-job :status :queued :sha sha :project project :create-date (get-universal-time))))
         (branch
          (or
           (find branch-name branches :test #'string= :key #'branch-name)