diff options
author | Michael Goulish <mgoulish@apache.org> | 2012-09-18 13:10:04 +0000 |
---|---|---|
committer | Michael Goulish <mgoulish@apache.org> | 2012-09-18 13:10:04 +0000 |
commit | c90dd9d1f079e897ffc6d7056357440308c51dcb (patch) | |
tree | 66a7c5b8f08b3a99baf016bf05111b536e6bbf5b /cpp/src | |
parent | 12ac9fa3db673c774f122c19cce31d875edcf2ed (diff) | |
download | qpid-python-c90dd9d1f079e897ffc6d7056357440308c51dcb.tar.gz |
qpid-4317 make browse-only x-arg string similar to others
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1387135 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/qpid/broker/QueueSettings.cpp | 2 | ||||
-rw-r--r-- | cpp/src/tests/MessagingSessionTests.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/qpid/broker/QueueSettings.cpp b/cpp/src/qpid/broker/QueueSettings.cpp index f31dda7444..f56b4dfda4 100644 --- a/cpp/src/qpid/broker/QueueSettings.cpp +++ b/cpp/src/qpid/broker/QueueSettings.cpp @@ -39,7 +39,7 @@ const std::string POLICY_TYPE("qpid.policy_type"); const std::string POLICY_TYPE_REJECT("reject"); const std::string POLICY_TYPE_RING("ring"); const std::string NO_LOCAL("no-local"); -const std::string BROWSE_ONLY("browse-only"); +const std::string BROWSE_ONLY("qpid.browse-only"); const std::string TRACE_ID("qpid.trace.id"); const std::string TRACE_EXCLUDES("qpid.trace.exclude"); const std::string LVQ_KEY("qpid.last_value_queue_key"); diff --git a/cpp/src/tests/MessagingSessionTests.cpp b/cpp/src/tests/MessagingSessionTests.cpp index 6d6551458d..edb50fce9c 100644 --- a/cpp/src/tests/MessagingSessionTests.cpp +++ b/cpp/src/tests/MessagingSessionTests.cpp @@ -1172,7 +1172,7 @@ QPID_AUTO_TEST_CASE(testBrowseOnly) allow message acquisition. */ QueueFixture fix; - std::string addr = "q; {create:always, node:{type:queue, durable:false, x-declare:{arguments:{browse-only:1}}}}"; + std::string addr = "q; {create:always, node:{type:queue, durable:false, x-declare:{arguments:{qpid.browse-only:1}}}}"; Sender sender = fix.session.createSender(addr); Message out("test-message"); |