fix
This commit is contained in:
parent
9640058f1c
commit
9929fb7997
8
sql.go
8
sql.go
@ -1013,7 +1013,7 @@ func cleanupJobData() {
|
||||
if err != nil {
|
||||
return
|
||||
}
|
||||
log.Printf("cleanupJobData : JobID : %d\n", jobID)
|
||||
// log.Printf("cleanupJobData : JobID : %d\n", jobID)
|
||||
err = doneStmt.QueryRow(jobID).Scan(&isDone)
|
||||
|
||||
if err != nil {
|
||||
@ -1029,13 +1029,13 @@ func cleanupJobData() {
|
||||
return
|
||||
}
|
||||
countObjDeleted += del
|
||||
log.Printf("cleanupJobData : delObj : %d\n", del)
|
||||
// log.Printf("cleanupJobData : delObj : %d\n", del)
|
||||
} else {
|
||||
logOnError(err, "cleanupJobData : scan doneStmt")
|
||||
return
|
||||
}
|
||||
} else {
|
||||
log.Printf("cleanupJobData : isDone : %d\n", isDone)
|
||||
// log.Printf("cleanupJobData : isDone : %d\n", isDone)
|
||||
if isDone == 1 {
|
||||
delJob, err := delJobStmt.Exec(jobID)
|
||||
logOnError(err, "cleanupJobData : exec delJobStmt")
|
||||
@ -1052,7 +1052,7 @@ func cleanupJobData() {
|
||||
return
|
||||
}
|
||||
countJobDeleted += del
|
||||
log.Printf("cleanupJobData : delJob : %d\n", del)
|
||||
/// log.Printf("cleanupJobData : delJob : %d\n", del)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user