summaryrefslogtreecommitdiff
path: root/qpid/cpp/src
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2013-10-15 12:42:08 +0000
committerGordon Sim <gsim@apache.org>2013-10-15 12:42:08 +0000
commit943e7470af55c73495cf46e70c0534268b444056 (patch)
tree050baddd2aa54b49d32352b776cda6f0ff40245f /qpid/cpp/src
parent547e869040eda5dadf8f3bca7cfbabf7ad67287b (diff)
downloadqpid-python-943e7470af55c73495cf46e70c0534268b444056.tar.gz
QPID-5233: match default sender capacity to that for 0-10 codepath
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1532309 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
-rw-r--r--qpid/cpp/src/qpid/messaging/amqp/SenderContext.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/qpid/messaging/amqp/SenderContext.cpp b/qpid/cpp/src/qpid/messaging/amqp/SenderContext.cpp
index a7118af598..6eed7b43d6 100644
--- a/qpid/cpp/src/qpid/messaging/amqp/SenderContext.cpp
+++ b/qpid/cpp/src/qpid/messaging/amqp/SenderContext.cpp
@@ -44,7 +44,7 @@ SenderContext::SenderContext(pn_session_t* session, const std::string& n, const
: name(n),
address(a),
helper(address),
- sender(pn_sender(session, n.c_str())), capacity(1000), unreliable(helper.isUnreliable()) {}
+ sender(pn_sender(session, n.c_str())), capacity(50), unreliable(helper.isUnreliable()) {}
SenderContext::~SenderContext()
{