summaryrefslogtreecommitdiff
path: root/cli/bench/http/node_post_bin.lua
diff options
context:
space:
mode:
Diffstat (limited to 'cli/bench/http/node_post_bin.lua')
-rw-r--r--cli/bench/http/node_post_bin.lua5
1 files changed, 5 insertions, 0 deletions
diff --git a/cli/bench/http/node_post_bin.lua b/cli/bench/http/node_post_bin.lua
new file mode 100644
index 000000000..c8f5d3e3f
--- /dev/null
+++ b/cli/bench/http/node_post_bin.lua
@@ -0,0 +1,5 @@
+wrk.method = "POST"
+wrk.headers["Content-Type"] = "application/octet-stream"
+
+file = io.open("./cli/bench/testdata/128k.bin", "rb")
+wrk.body = file:read("*a") \ No newline at end of file