Whats the solution for this, how can I have a channel of jobs and write it to a file. Is that bad practice?
I don't think you can read a full channel so would i need to basically add a switch inside my workerRunJob function
// don't do the work, just add to slice (will be called on all jobs overtime..)
jobsToWriteToFile = append(jobsToWriteToFile,job)
} else{
// Complete job
// 30 seconds.....
}```