test
This commit is contained in:
parent
cabe3ed394
commit
56fe67649a
9
sql.go
9
sql.go
@ -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)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user