mirror of
https://github.com/reactos/syzkaller.git
synced 2024-11-30 14:50:36 +00:00
dashboard/app: don't log updates to closed bugs
These happen and we specifically treat them as non-bugs. Don't log them as errors as well.
This commit is contained in:
parent
7e7d7ed26a
commit
8884d5d1e6
@ -323,7 +323,7 @@ func incomingCommand(c context.Context, cmd *dashapi.BugUpdate) (bool, string, e
|
||||
ok, reason, err := incomingCommandImpl(c, cmd)
|
||||
if err != nil {
|
||||
log.Errorf(c, "%v (%v)", reason, err)
|
||||
} else if !ok {
|
||||
} else if !ok && reason != "" {
|
||||
log.Warningf(c, "invalid update: %v", reason)
|
||||
}
|
||||
return ok, reason, err
|
||||
|
Loading…
Reference in New Issue
Block a user