Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

executor: Load data ignore default value is nil and add log #1953

Merged
merged 4 commits into from
Nov 5, 2016
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
executor: update log
  • Loading branch information
zimulala committed Nov 5, 2016
commit 01e743c43e972cb4838a4ae02ada7493f7206cb7
2 changes: 1 addition & 1 deletion executor/executor_write.go
Original file line number Diff line number Diff line change
Expand Up @@ -875,7 +875,7 @@ func filterErr(err error, ignoreErr bool) error {
if !ignoreErr {
return errors.Trace(err)
}
log.Warning("ignoreErr err:%v", errors.ErrorStack(err))
log.Warning("ignore err:%v", errors.ErrorStack(err))
return nil
}

Expand Down