Skip to content

Commit d957eb6

Browse files
update binary msg (#106)
1 parent decacd9 commit d957eb6

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

render/render.go

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,10 @@ func printHTTPRequestResult(result api.HTTPRequestResult) string {
326326
str += result.BodyString
327327
}
328328
} else {
329-
str += fmt.Sprintf("Binary %s file", contentType)
329+
str += fmt.Sprintf(
330+
"Binary %s file. Raw data hidden. To manually debug, use curl -o myfile.bin and inspect the file",
331+
contentType,
332+
)
330333
}
331334
str += "\n"
332335

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v1.20.2
1+
v1.20.3

0 commit comments

Comments
 (0)