Commit d0854c69 authored by Brendan Melville's avatar Brendan Melville

Service responses will now be presented in YAML.

parent 7480f215
...@@ -176,11 +176,17 @@ func callService(path, method, action string, reader io.ReadCloser) { ...@@ -176,11 +176,17 @@ func callService(path, method, action string, reader io.ReadCloser) {
u := fmt.Sprintf("%s/%s", *service, path) u := fmt.Sprintf("%s/%s", *service, path)
resp := callHttp(u, method, action, reader) resp := callHttp(u, method, action, reader)
var prettyJSON bytes.Buffer var j interface{}
if err := json.Indent(&prettyJSON, []byte(resp), "", " "); err != nil { if err := json.Unmarshal([]byte(resp), &j); err != nil {
log.Fatalf("Failed to parse JSON response from service: %s", resp) log.Fatalf("Failed to parse JSON response from service: %s", resp)
} }
fmt.Println(prettyJSON.String())
y, err := yaml.Marshal(j)
if err != nil {
log.Fatalf("Failed to serialize JSON response from service: %s", resp)
}
fmt.Println(string(y))
} }
func callHttp(path, method, action string, reader io.ReadCloser) string { func callHttp(path, method, action string, reader io.ReadCloser) string {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment