|
} |
|
log.WithField("id", resp.Id). |
|
WithField("url", u.bugzilla.ShowBug(resp.Id)). |
|
Debug("created bugzilla ticket") |
|
u.bugID = resp.Id |
We're currently getting an error because of an invalid cc field:
{
"file": "/build/gopath/src/github.com/mozilla/OneCRL-Tools/ccadb2OneCRL/main.go:520",
"func": "main.(*Updater).OpenBug.func1",
"id": 0,
"level": "debug",
"msg": "created bugzilla ticket",
"time": "2020-11-17T19:15:27Z",
"url": "https://bugzilla.mozilla.org/show_bug.cgi?id=0"
}
id=0 is invalid, so we need to catch that and abort in the future.
OneCRL-Tools/ccadb2OneCRL/main.go
Lines 517 to 521 in d89e4d7
We're currently getting an error because of an invalid
ccfield:id=0 is invalid, so we need to catch that and abort in the future.