-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Getting Invalid use of BasicClientConnManager: in parallel environment #37
Comments
Thanks for reporting the problem.
|
I happened to get this same error too and I think it happened when I had two sequential calls for RestAssured, one with a post and the other with a delete but still using the same request specification object. If I get this error again I'll try and come back here to update this comment with a sample. |
I was able to reproduce the bug following instructions from @francislainy . This seems to be a bug in REST-assured that I reported there: rest-assured/rest-assured#1392. REST-assured is not releasing HTTP connections when reusing HTTP client instance. A workaround would be to remove |
I decided to not reuse HTTP client. Hope this will fix the issue. |
The text was updated successfully, but these errors were encountered: