You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@cxf.apache.org by GitBox <gi...@apache.org> on 2018/05/02 06:53:08 UTC

[GitHub] rmannibucau commented on a change in pull request #414: [CXF-7653]:Add system property to enable/disable check empty response…

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:
users@infra.apache.org


With regards,
Apache Git Services