From d6a562849c8d56cddc89e81fde5b324a3fa8314a Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Mon, 8 Sep 2025 04:03:13 -0500 Subject: [PATCH] changes for autogenpb http functions --- doPatch.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doPatch.go b/doPatch.go index 6620e92..5fc54ed 100644 --- a/doPatch.go +++ b/doPatch.go @@ -60,7 +60,7 @@ func doPatch() error { if argv.Patch.Get != nil { psets := forgepb.NewPatchsets() - newpb, _ := psets.HttpPostVerbose(myServer(), "get") + newpb, _, _ := psets.HttpPostVerbose(myServer(), "get") newpb.PrintTable() me.forge.Patchsets = newpb me.forge.SavePatchsets() @@ -141,7 +141,7 @@ func doPatch() error { // for patch := range applied.IterAll() { // log.Info("SEND APPLIED: newhash:", patch.NewHash, "commithash:", patch.CommitHash, "patch", patch.Namespace) // } - newpb, err := applied.HttpPostVerbose(myServer(), "applied") + newpb, _, err := applied.HttpPostVerbose(myServer(), "applied") if err != nil { return err }