summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-08 04:03:13 -0500
committerJeff Carr <[email protected]>2025-09-08 04:03:13 -0500
commitd6a562849c8d56cddc89e81fde5b324a3fa8314a (patch)
tree07a5473bf6d11bc6ae75565646a1091097fd03f8
parentc55e8072625fada8196bafe15e167252ae215759 (diff)
changes for autogenpb http functions
-rw-r--r--doPatch.go4
1 files 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
}