andymc12 opened a new pull request #703: URL: https://github.com/apache/cxf/pull/703
This should resolve 4 errors/failures in systests that resulted from runtime changes in CXF-8346 / PR #697. The first change is to remove query parameters. These should need to be "replaced" as the query parameter was specified on the original request. By replacing them, it actually appended them, making the request URI look something like: `http://localhost:8080/bookstore/books/check2?a=b?a=b` which is not allowed (the extra question mark). The other changes were to re-acquire the Response object rather than just re-using them. This was a clear test bug, since it was previously checking the response from the first request twice rather than checking the response from both requests. This should resolve 8 failures in the master builds since these 4 tests are run twice (once for Java 8 and once for Java 11). ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
