Skip to content

Commit

Permalink
ddl: just print error message when ddl job is normal to calcel, to el…
Browse files Browse the repository at this point in the history
…iminate noisy log (#7875)
  • Loading branch information
winkyao authored and XuHuaiyu committed Oct 18, 2018
1 parent a2beedf commit b22bfb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ddl/ddl_worker.go
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ func (w *worker) runDDLJob(d *ddlCtx, t *meta.Meta, job *model.Job) (ver int64,
if job.State != model.JobStateCancelled {
log.Errorf("[ddl-%s] run DDL job err %v", w, errors.ErrorStack(err))
} else {
log.Infof("[ddl-%s] the DDL job is normal to cancel because %v", w, errors.ErrorStack(err))
log.Infof("[ddl-%s] the DDL job is normal to cancel because %v", w, err)
}

job.Error = toTError(err)
Expand Down

0 comments on commit b22bfb5

Please sign in to comment.