You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by da...@apache.org on 2009/10/20 08:20:05 UTC

svn commit: r826971 - /webservices/axis2/trunk/c/src/core/phaseresolver/phase_resolver.c

Author: damitha
Date: Tue Oct 20 06:20:05 2009
New Revision: 826971

URL: http://svn.apache.org/viewvc?rev=826971&view=rev
Log:
Here status code checking is not important, because if there is no handlers then it won't enter the pending loop

Modified:
    webservices/axis2/trunk/c/src/core/phaseresolver/phase_resolver.c

Modified: webservices/axis2/trunk/c/src/core/phaseresolver/phase_resolver.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/src/core/phaseresolver/phase_resolver.c?rev=826971&r1=826970&r2=826971&view=diff
==============================================================================
--- webservices/axis2/trunk/c/src/core/phaseresolver/phase_resolver.c (original)
+++ webservices/axis2/trunk/c/src/core/phaseresolver/phase_resolver.c Tue Oct 20 06:20:05 2009
@@ -1954,13 +1954,13 @@
         AXIS2_ERROR_SET_STATUS_CODE(env->error, AXIS2_SUCCESS);
 
         count = axis2_flow_get_handler_count(flow, env);
-        if(AXIS2_SUCCESS != AXIS2_ERROR_GET_STATUS_CODE(env->error))
+        /*if(AXIS2_SUCCESS != AXIS2_ERROR_GET_STATUS_CODE(env->error))
         {
             AXIS2_LOG_ERROR(env->log, AXIS2_LOG_SI, "Getting hanlder count for the flow %s failed",
                 flowname);
 
             return AXIS2_ERROR_GET_STATUS_CODE(env->error);
-        }
+        }*/
 
         for(j = 0; j < count; j++)
         {