diff options
| author | Jeff Carr <[email protected]> | 2025-09-08 04:03:13 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-09-08 04:03:13 -0500 |
| commit | d6a562849c8d56cddc89e81fde5b324a3fa8314a (patch) | |
| tree | 07a5473bf6d11bc6ae75565646a1091097fd03f8 | |
| parent | c55e8072625fada8196bafe15e167252ae215759 (diff) | |
changes for autogenpb http functions
| -rw-r--r-- | doPatch.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 } |
