Skip to content

Commit

Permalink
[YUNIKORN-2807] Don't log 'task missing' as ERROR (apache#892)
Browse files Browse the repository at this point in the history
Closes: apache#892
  • Loading branch information
craigcondit committed Aug 15, 2024
1 parent eed4ea1 commit fabbce3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cache/context.go
Original file line number Diff line number Diff line change
Expand Up @@ -1260,7 +1260,7 @@ func (ctx *Context) TaskEventHandler() func(obj interface{}) {
taskID := event.GetTaskID()
task := ctx.getTask(appID, taskID)
if task == nil {
log.Log(log.ShimContext).Error("failed to handle task event, task does not exist",
log.Log(log.ShimContext).Debug("failed to handle task event, task does not exist",
zap.String("applicationID", appID),
zap.String("taskID", taskID))
return
Expand Down

0 comments on commit fabbce3

Please sign in to comment.