diff options
| author | Jeff Carr <[email protected]> | 2025-09-07 19:14:38 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-09-07 21:41:20 -0500 |
| commit | ecf404994754b339e6e3fce1fceda7f0e0734d7c (patch) | |
| tree | 8928eb7b9d94ba02ac11a3f10226d6575392d7ab /patchset.Get.go | |
| parent | e3c8669be446ec3529ea924ccd0034cd44dae170 (diff) | |
start using a standard http PB
Diffstat (limited to 'patchset.Get.go')
| -rw-r--r-- | patchset.Get.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/patchset.Get.go b/patchset.Get.go index 5780fab..e9f183d 100644 --- a/patchset.Get.go +++ b/patchset.Get.go @@ -66,11 +66,11 @@ func (f *Forge) loadUpstreamPatchsets(psets *Patchsets) { // log.Info("\talready found!!!!!!!", pset.Uuid, patch.Namespace) continue } - if err := f.addRandomPatch(patch); err == nil { + if f.AddNewPatch(patch) { log.Info("\tnew patch added:", patch.CommitHash, found.Name, found.Comment, author) foundnew = true } else { - log.Info("\tnew patch failed:", patch.CommitHash, found.Name, found.Comment, author, err) + log.Info("\tnew patch failed:", patch.CommitHash, found.Name, found.Comment, author) } } pset.State = found.State |
