diff options
author | Kenneth Anthony Giusti <kgiusti@apache.org> | 2011-03-08 15:04:07 +0000 |
---|---|---|
committer | Kenneth Anthony Giusti <kgiusti@apache.org> | 2011-03-08 15:04:07 +0000 |
commit | cf54529d706ef87e01e13f55735b7df7f324838c (patch) | |
tree | b941d3badaed7e97e83557aef0d827838b51c9fc /qpid/cpp/src/tests/QueueTest.cpp | |
parent | 27dff9d6c468158640a47dca87830930688ff082 (diff) | |
download | qpid-python-cf54529d706ef87e01e13f55735b7df7f324838c.tar.gz |
QPID-3073: refactor to eliminate locks, malloc, and map insert/remove in receive path.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1079385 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/QueueTest.cpp')
-rw-r--r-- | qpid/cpp/src/tests/QueueTest.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/qpid/cpp/src/tests/QueueTest.cpp b/qpid/cpp/src/tests/QueueTest.cpp index fd30a98ac0..2059727e7b 100644 --- a/qpid/cpp/src/tests/QueueTest.cpp +++ b/qpid/cpp/src/tests/QueueTest.cpp @@ -88,8 +88,6 @@ intrusive_ptr<Message> create_message(std::string exchange, std::string routingK msg->getFrames().append(method); msg->getFrames().append(header); msg->getFrames().getHeaders()->get<DeliveryProperties>(true)->setRoutingKey(routingKey); - boost::shared_ptr<AsyncCompletion>dc(new DummyCompletion()); - msg->setIngressCompletion(dc); return msg; } |