summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorGordon Sim <gsim@apache.org>2013-11-11 18:13:16 +0000
committerGordon Sim <gsim@apache.org>2013-11-11 18:13:16 +0000
commitb6dcd8a94d209ea44e4bee41708986444d3ce429 (patch)
treee4c59090f59ee1218ec7dec7f6ff958f9081822b /cpp/src
parentba4d8c5a1f2b07a1e256efacd9510eeb008b3d23 (diff)
downloadqpid-python-b6dcd8a94d209ea44e4bee41708986444d3ce429.tar.gz
QPID-5324: don't ignore unrecognised filter, throw exception
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1540794 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/qpid/broker/Queue.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/broker/Queue.cpp b/cpp/src/qpid/broker/Queue.cpp
index a805e110ad..a096c5929a 100644
--- a/cpp/src/qpid/broker/Queue.cpp
+++ b/cpp/src/qpid/broker/Queue.cpp
@@ -693,7 +693,7 @@ namespace {
}
}
}
- QPID_LOG(error, "Ignoring unrecognized message filter: '" << *filter << "'");
+ throw qpid::Exception(QPID_MSG("Unrecognized message filter: '" << *filter << "'"));
}
return new MessageFilter();
}