Closed eddierubeiz closed 3 months ago
Thanks!
Not having the job id in the error line is unfortunate, and won't allow the error line to tell us much, or be findable when we're looking for what hapepend with a given job id.
If we're going ot do this, maybe at least log "No job id available" or something, instead of just a blank space more easily missed?
Good call - done!
This took two tries, but it's actually a simple problem - a
ApplicationJob
does not have anid
but it does have ajob_id
. (Puttingid
in the error message was throwing a NoMethodError.) Ref #2626