diff options
| author | Rupert Smith <rupertlssmith@apache.org> | 2008-01-24 16:51:25 +0000 |
|---|---|---|
| committer | Rupert Smith <rupertlssmith@apache.org> | 2008-01-24 16:51:25 +0000 |
| commit | e63509bbea50b2d5dac0f0dcf33df11abea84eeb (patch) | |
| tree | 6a06f58f46d262a3a6bd0e51b1c095c7a9d6d577 /dotnet | |
| parent | 4ccdc650d654826b4e04a4bed90291eb96d133e1 (diff) | |
| download | qpid-python-e63509bbea50b2d5dac0f0dcf33df11abea84eeb.tar.gz | |
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.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@614922 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'dotnet')
| -rw-r--r-- | dotnet/Qpid.Messaging/MessagePublisherBuilder.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dotnet/Qpid.Messaging/MessagePublisherBuilder.cs b/dotnet/Qpid.Messaging/MessagePublisherBuilder.cs index 77d2fee1c1..79c7575d0a 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 = false; + const bool DEFAULT_MANDATORY = true; IChannel _channel; string _exchangeName = null; |
