From e57f48e64994dabbd5c50173044f7d95f899c663 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Mon, 7 Jul 2025 19:02:32 -0500 Subject: manual git merge --- http.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'http.go') diff --git a/http.go b/http.go index ffbc5e3..c48a42c 100644 --- a/http.go +++ b/http.go @@ -49,14 +49,14 @@ func okHandler(w http.ResponseWriter, r *http.Request) { if err != nil { return } - // marshal the protobuf to xfer over the socket - data, err := found.Marshal() - if err != nil { - log.Info("repos.Marshal() to wire failed", err) - return - } - w.Write(data) + /* + for repo := range repos.IterAll() { + repo.Namespace += "good" + log.Infof("repo:%s,%s\n", repo.Namespace, repo.FullPath) + } + */ + found.SendPB(w) return } -- cgit v1.2.3