rmannibucau commented on a change in pull request #414: [CXF-7653]:Add system property to enable/disable check empty response… URL: https://github.com/apache/cxf/pull/414#discussion_r185406356
########## File path: core/src/main/java/org/apache/cxf/endpoint/ClientImpl.java ########## @@ -658,7 +659,7 @@ private void enrichFault(Fault fault) { throw ex; } - if (resList == null + if (Boolean.getBoolean(CHECK_EMTPY_RESPONSE) && resList == null Review comment: it goes through a Properties access so it is synchronized, maybe read it once per client instance to avoid an useless locking? ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org With regards, Apache Git Services