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
I am trying to start a load process but I want to test not only my application but also my authentication infrastructure. I want my webserver to authenticate every request instead of reusing sessions. I am testing a rest api that uses basic authentication.
The idea is that I have millions of mobile users making a single request by day instead of a few thousands making constant use of the application.
Can anyone help me ?
The text was updated successfully, but these errors were encountered:
From requests documentation it can be seen that requests.Session class has close() method. You can probably call slef.client.close() after each request so that new connection are made for each request.
Thanks man!! I am going to make some changes to my script to adapt better for my tests but for the time being it is working beautifully :)
Really appreciate the help :)
Hello,
I am trying to start a load process but I want to test not only my application but also my authentication infrastructure. I want my webserver to authenticate every request instead of reusing sessions. I am testing a rest api that uses basic authentication.
The idea is that I have millions of mobile users making a single request by day instead of a few thousands making constant use of the application.
Can anyone help me ?
The text was updated successfully, but these errors were encountered: