pbacsko commented on code in PR #896:
URL: https://github.com/apache/yunikorn-core/pull/896#discussion_r1651064013
##########
pkg/scheduler/ugm/manager.go:
##########
@@ -107,9 +107,6 @@ func (m *Manager) IncreaseTrackedResource(queuePath,
applicationID string, usage
zap.Stringer("resource", usage))
groupTracker := m.GetGroupTracker(appGroup)
if groupTracker == nil {
- log.Log(log.SchedUGM).Error("group tracker should be available
in groupTrackers map",
Review Comment:
In that case we're guared by:
```
if appGroup == common.Empty {
return
}
```
In this code path, we already check it inside `ensureGroupTrackerForApp()`.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]