import worked

Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
Jeff Carr 2024-11-01 08:30:55 -05:00
parent a10dab96ff
commit 0a28c45a6c
2 changed files with 5 additions and 10 deletions

View File

@ -88,14 +88,17 @@ func importDomain(w http.ResponseWriter, r *http.Request) (string, error) {
log.Info(reason)
return "", err
}
if s != "" {
log.Warn("bad XML:", s)
os.Exit(0)
}
// everything worked. add the events
for _, e := range events {
me.cluster.AddEvent(e)
}
log.Warn("Everything worked")
result := fmt.Sprintln("importDomain() worked")
log.Log(WARN, result)
fmt.Fprintln(w, result)

View File

@ -6,7 +6,6 @@ import (
"net/http"
"os"
"os/user"
"strings"
"go.wit.com/log"
)
@ -35,12 +34,5 @@ func httpPost(url string, data []byte) ([]byte, error) {
log.Error(err)
return body, err
}
test := strings.TrimSpace(string(body))
log.Info("go.wit.com returned body:", test)
if test == "OK" {
return body, nil
}
return body, nil
}