This commit is contained in:
shoopea 2020-10-20 11:27:49 +02:00
parent cabe3ed394
commit 56fe67649a

9
sql.go
View File

@ -1014,10 +1014,13 @@ func cleanupJobData() {
log.Printf("cleanupJobData : JobID : %d\n", jobID)
err = doneStmt.QueryRow(jobID).Scan(&isDone)
logOnError(err, "cleanupJobData : scan doneStmt")
if err.Error() == `sql: no rows in result set` {
} else if err != nil {
return
if err != nil {
if err.Error() == `sql: no rows in result set` {
} else {
return
}
} else {
log.Printf("cleanupJobData : isDone : %d\n", isDone)
}