You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The JSON parser used in mb is more lenient to the extra commas, and the old example would still work in mb. Please consider closing this issue if you feel it has been fixed.
request.json example file format error!
[
{
"scheme": "http",
"host": "www.example.com",
"port": 80,
"method": "GET",
"path": "/",
"delay": {
"min": 1000,
"max": 2000, #here
},
"keep-alive-requests": 100,
"clients": 2, #here
},
{
"scheme": "https",
"tls-session-reuse": true,
"host": "example.com",
"port": 443,
"method": "POST",
"path": "/",
"headers": {
"Content-Type": "application/x-www-form-urlencoded",
},
"body": {
"content": "name=user&email=user@example.com",
},
"delay": {
"min": 3000,
"max": 5000,
},
"keep-alive-requests": 1,
"clients": 3,
}
]
The text was updated successfully, but these errors were encountered: