PHRAS-3447_file-lock-in-workers_4.1

fix : missing "created" date
This commit is contained in:
jygaulier
2021-06-02 17:09:05 +02:00
parent 336861b7c7
commit bc173c93b0

View File

@@ -186,6 +186,7 @@ class WorkerRunningJobRepository extends EntityRepository
. " `work` = " . $cnx->quote($type) . ",\n"
. " `work_on` = " . $cnx->quote($payload['subdefName']) . ",\n"
. " `payload` = " . $cnx->quote($pl) . ",\n"
. " `created` = NOW(),\n"
. " `published` = " . $cnx->quote($datePublished->format('Y-m-d H:i:s')) . ",\n"
. " `status` = " . $cnx->quote(WorkerRunningJob::RUNNING);