diff options
| author | Gordon Sim <gsim@apache.org> | 2013-10-15 12:42:08 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2013-10-15 12:42:08 +0000 |
| commit | 33e1005c9ee8be7dfa9ed9317cd0f5a5879ef1a8 (patch) | |
| tree | 7a92a56502ec60d13d6f696a18a1c57a40ddd0ef /cpp/src/qpid | |
| parent | 14b07b1ee5dd37c49a202dd3798061f667fe1eb4 (diff) | |
| download | qpid-python-33e1005c9ee8be7dfa9ed9317cd0f5a5879ef1a8.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/qpid@1532309 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid')
| -rw-r--r-- | cpp/src/qpid/messaging/amqp/SenderContext.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/messaging/amqp/SenderContext.cpp b/cpp/src/qpid/messaging/amqp/SenderContext.cpp index a7118af598..6eed7b43d6 100644 --- a/cpp/src/qpid/messaging/amqp/SenderContext.cpp +++ b/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() { |
