Author: rupertlssmith
Date: Thu Jan 24 08:51:25 2008
New Revision: 614922

URL: http://svn.apache.org/viewvc?rev=614922&view=rev
Log:
Qpid-728, Set default of true for mandatory flag, as this is how it was 
previously. It was disabled because of this error handling bug, as a work 
around.

Modified:
    
incubator/qpid/branches/M2.1/dotnet/Qpid.Messaging/MessagePublisherBuilder.cs

Modified: 
incubator/qpid/branches/M2.1/dotnet/Qpid.Messaging/MessagePublisherBuilder.cs
URL: 
http://svn.apache.org/viewvc/incubator/qpid/branches/M2.1/dotnet/Qpid.Messaging/MessagePublisherBuilder.cs?rev=614922&r1=614921&r2=614922&view=diff
==============================================================================
--- 
incubator/qpid/branches/M2.1/dotnet/Qpid.Messaging/MessagePublisherBuilder.cs 
(original)
+++ 
incubator/qpid/branches/M2.1/dotnet/Qpid.Messaging/MessagePublisherBuilder.cs 
Thu Jan 24 08:51:25 2008
@@ -31,7 +31,7 @@
         /// Default value for mandatory flag is true, i.e. server will not 
silently drop messages where no queue is
         /// connected to the exchange for the message
         /// </summary>
-        const bool DEFAULT_MANDATORY = false;
+        const bool DEFAULT_MANDATORY = true;
 
         IChannel _channel;
         string _exchangeName = null;


Reply via email to