diff options
| author | Gordon Sim <gsim@apache.org> | 2010-05-11 08:13:56 +0000 |
|---|---|---|
| committer | Gordon Sim <gsim@apache.org> | 2010-05-11 08:13:56 +0000 |
| commit | c0462179f69830960c2618e8c47a5abac2a19635 (patch) | |
| tree | c0f7a09d82adf76d7f25ffe42732006056a819c1 /qpid/cpp/src | |
| parent | ec0ea98d66cddab138fe2ff4d93f66c3f9e2212a (diff) | |
| download | qpid-python-c0462179f69830960c2618e8c47a5abac2a19635.tar.gz | |
QPID-664: Fix bug preventing re-establishment of credit on reconnect
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@943036 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
| -rw-r--r-- | qpid/cpp/src/qpid/client/amqp0_10/ReceiverImpl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/qpid/client/amqp0_10/ReceiverImpl.cpp b/qpid/cpp/src/qpid/client/amqp0_10/ReceiverImpl.cpp index b86f142546..435459d97f 100644 --- a/qpid/cpp/src/qpid/client/amqp0_10/ReceiverImpl.cpp +++ b/qpid/cpp/src/qpid/client/amqp0_10/ReceiverImpl.cpp @@ -118,7 +118,7 @@ void ReceiverImpl::init(qpid::client::AsyncSession s, AddressResolution& resolve parent->receiverCancelled(destination); } else { source->subscribe(session, destination); - start(); + startFlow(); } } |
