summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRupert Smith <rupertlssmith@apache.org>2007-12-19 13:40:05 +0000
committerRupert Smith <rupertlssmith@apache.org>2007-12-19 13:40:05 +0000
commit960bf6b7703f4f56cea2aef5671207de542af0fa (patch)
treec19f738a1a4911ea79eb26c4320cf64f8d2fa20a
parentf206f2594eb78b0568d7588d3c8bfadc9e4a1794 (diff)
downloadqpid-python-960bf6b7703f4f56cea2aef5671207de542af0fa.tar.gz
Messages were being sent mandatory by default, set to false.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1.1@605536 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--dotnet/Qpid.Messaging/MessagePublisherBuilder.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/dotnet/Qpid.Messaging/MessagePublisherBuilder.cs b/dotnet/Qpid.Messaging/MessagePublisherBuilder.cs
index 79c7575d0a..77d2fee1c1 100644
--- a/dotnet/Qpid.Messaging/MessagePublisherBuilder.cs
+++ b/dotnet/Qpid.Messaging/MessagePublisherBuilder.cs
@@ -31,7 +31,7 @@ namespace Apache.Qpid.Messaging
/// 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 = true;
+ const bool DEFAULT_MANDATORY = false;
IChannel _channel;
string _exchangeName = null;