Author: ruwan
Date: Wed Oct 22 22:13:16 2008
New Revision: 707274

URL: http://svn.apache.org/viewvc?rev=707274&view=rev
Log:
we should not set null as the ERROR_EXCEPTION property because we do not have 
nything to overight this field and it will clear any exceptions which causes 
the root issue of this failure.

Modified:
    
synapse/trunk/java/modules/core/src/main/java/org/apache/synapse/endpoints/SALoadbalanceEndpoint.java

Modified: 
synapse/trunk/java/modules/core/src/main/java/org/apache/synapse/endpoints/SALoadbalanceEndpoint.java
URL: 
http://svn.apache.org/viewvc/synapse/trunk/java/modules/core/src/main/java/org/apache/synapse/endpoints/SALoadbalanceEndpoint.java?rev=707274&r1=707273&r2=707274&view=diff
==============================================================================
--- 
synapse/trunk/java/modules/core/src/main/java/org/apache/synapse/endpoints/SALoadbalanceEndpoint.java
 (original)
+++ 
synapse/trunk/java/modules/core/src/main/java/org/apache/synapse/endpoints/SALoadbalanceEndpoint.java
 Wed Oct 22 22:13:16 2008
@@ -283,7 +283,6 @@
             synCtx.setProperty(SynapseConstants.ERROR_CODE, errorCode);
             synCtx.setProperty(SynapseConstants.ERROR_MESSAGE, errorMsg);
             synCtx.setProperty(SynapseConstants.ERROR_DETAIL, errorMsg);
-            synCtx.setProperty(SynapseConstants.ERROR_EXCEPTION, null);
         }
         super.onFault(synCtx);
     }


Reply via email to