summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Godfrey <rgodfrey@apache.org>2015-03-17 11:33:45 +0000
committerRobert Godfrey <rgodfrey@apache.org>2015-03-17 11:33:45 +0000
commite1e51dbf57400c7faf37bf68a63b4cc60703adc8 (patch)
tree1944dc8ab16e7f9254dc68987cdb77c5a44a2b62
parent3667e16b06aab85f2cf7deaf0361d5c17eedb03c (diff)
downloadqpid-python-e1e51dbf57400c7faf37bf68a63b4cc60703adc8.tar.gz
QPID-6453 : Address review comments from Keith Wall
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1667271 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--qpid/doc/book/src/java-broker/concepts/Java-Broker-Concepts-Queues.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/doc/book/src/java-broker/concepts/Java-Broker-Concepts-Queues.xml b/qpid/doc/book/src/java-broker/concepts/Java-Broker-Concepts-Queues.xml
index d879b08414..0de49afae5 100644
--- a/qpid/doc/book/src/java-broker/concepts/Java-Broker-Concepts-Queues.xml
+++ b/qpid/doc/book/src/java-broker/concepts/Java-Broker-Concepts-Queues.xml
@@ -355,13 +355,13 @@ amqp://guest:guest@client1/development?maxprefetch='1'&amp;brokerlist='tcp://loc
To set the default behaviour for the queue to be that consumers only receive newly arrived
messages, then you should set this attribute to the value:</para>
<screen>
- { "x-qpid-replay-period" : [ "x-qpid-replay-period", "0" ] }
+ { "x-qpid-replay-period" : { "x-qpid-replay-period" : [ "0" ] } }
</screen>
<para>
If the desired default behaviour is that each consumer should see all messages arriving in
the last minute, as well as all new messages then the value would need to be:</para>
<screen>
- { "x-qpid-replay-period" : [ "x-qpid-replay-period", "60" ] }
+ { "x-qpid-replay-period" : { "x-qpid-replay-period" : [ "60" ] } }
</screen>
</section>