Skip to content

fix: silence noisy "Ignoring duplicate key error" messages. Fixes #14344 #14357

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

Merged
merged 1 commit into from
Apr 16, 2025
Merged
Changes from all commits
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
2 changes: 1 addition & 1 deletion persist/sqldb/offload_node_status_repo.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ func (wdc *nodeOffloadRepo) Save(uid, namespace string, nodes wfv1.Nodes) (strin
if !isDuplicateKeyError(err) {
return "", err
}
logCtx.WithField("err", err).Info("Ignoring duplicate key error")
logCtx.WithField("err", err).Debug("Ignoring duplicate key error")
}
// Don't need to clean up the old records here, we have a scheduled cleanup mechanism.
// If we clean them up here, when we update, if there is an update conflict, we will not be able to go back.
Expand Down