Refactor variabel naming and update doc comments

This commit is contained in:
2025-12-16 08:56:48 +01:00
parent 0306723307
commit e6286768a7
13 changed files with 88 additions and 88 deletions

View File

@@ -40,7 +40,7 @@ type JobTagger struct {
// startTaggers are applied when a job starts (e.g., application detection)
startTaggers []Tagger
// stopTaggers are applied when a job completes (e.g., job classification)
stopTaggers []Tagger
stopTaggers []Tagger
}
func newTagger() {
@@ -98,7 +98,7 @@ func RunTaggers() error {
}
for _, id := range jl {
job, err := r.FindByIdDirect(id)
job, err := r.FindByIDDirect(id)
if err != nil {
cclog.Errorf("Error while getting job %s", err)
return err