python_devops_book icon indicating copy to clipboard operation
python_devops_book copied to clipboard

Load Testing with molotov

Open nirav-chotai opened this issue 5 years ago • 0 comments

After line, "save it as small.py":

(-) redirect('https://www.google.com/search?q=%s' % request.args['q']) (+) return redirect('https://www.google.com/search?q=%s' % request.args['q'])

After line, "This is how the file looks in the end":

(-) assert redirect_status == 301, error (+) assert redirect_status == 302, error

nirav-chotai avatar Dec 27 '19 13:12 nirav-chotai