diff options
author | Kim van der Riet <kpvdr@apache.org> | 2011-01-28 14:56:01 +0000 |
---|---|---|
committer | Kim van der Riet <kpvdr@apache.org> | 2011-01-28 14:56:01 +0000 |
commit | ead1307223c73d6efcc5573c177a22e238440f39 (patch) | |
tree | 921b29c0e5688d5f362b2eb94a3daf39ba2a6a72 /cpp | |
parent | 3ccb609aceff7ae2192b086d377a850af8328edd (diff) | |
download | qpid-python-ead1307223c73d6efcc5573c177a22e238440f39.tar.gz |
Fix for RHBZ656385: "Data store can become corrupt with small store file size and large wcache-page-size". The second issue from comments 13-16 in which the queue remains after the store throws the exception is solved.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1064711 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/src/qpid/broker/SessionAdapter.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/src/qpid/broker/SessionAdapter.cpp b/cpp/src/qpid/broker/SessionAdapter.cpp index d4f6b28ccb..3d62e73185 100644 --- a/cpp/src/qpid/broker/SessionAdapter.cpp +++ b/cpp/src/qpid/broker/SessionAdapter.cpp @@ -371,7 +371,8 @@ void SessionAdapter::QueueHandlerImpl::declare(const string& name, const string& } //apply settings & create persistent record if required - queue_created.first->create(arguments); + try { queue_created.first->create(arguments); } + catch (...) { getBroker().getQueues().destroy(name); throw; } //add default binding: getBroker().getExchanges().getDefault()->bind(queue, name, 0); |