Created
November 14, 2015 02:13
-
-
Save benaadams/fc1eba281ba268f1fa65 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| init = function(args) | |
| local r = {} | |
| local depth = tonumber(args[1]) or 1 | |
| for i=1,depth do | |
| r[i] = wrk.format() | |
| end | |
| req = table.concat(r) | |
| end | |
| request = function() | |
| return req | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment