diff options
author | Gordon Sim <gsim@apache.org> | 2009-11-19 11:45:15 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2009-11-19 11:45:15 +0000 |
commit | 82faa3a8fe5406506855e99373734e84f3f0d581 (patch) | |
tree | 925cad0d60c3ad3d06dcb962470483d7b5f4bae6 /cpp | |
parent | 8740ad3c58503942aa95f9c07f643d394f8cf02b (diff) | |
download | qpid-python-82faa3a8fe5406506855e99373734e84f3f0d581.tar.gz |
Change content type for map and list messages to align with python client.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@882117 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/src/qpid/client/amqp0_10/Codecs.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/qpid/client/amqp0_10/Codecs.cpp b/cpp/src/qpid/client/amqp0_10/Codecs.cpp index 57184e3937..ff72dfbf4e 100644 --- a/cpp/src/qpid/client/amqp0_10/Codecs.cpp +++ b/cpp/src/qpid/client/amqp0_10/Codecs.cpp @@ -293,7 +293,7 @@ void translate(const FieldTable& from, Variant::Map& to) convert(from, to, &toVariantMapEntry); } -const std::string ListCodec::contentType("amqp0_10/list"); -const std::string MapCodec::contentType("amqp0_10/map"); +const std::string ListCodec::contentType("amqp/list"); +const std::string MapCodec::contentType("amqp/map"); }}} // namespace qpid::client::amqp0_10 |