Skip to content

Commit b0cb1d5

Browse files
Doc improvements.
1 parent b13418a commit b0cb1d5

File tree

5 files changed

+191
-206
lines changed

5 files changed

+191
-206
lines changed

doc/src/api_manual/aq.rst

Lines changed: 9 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -43,26 +43,24 @@ Queue Methods
4343

4444
.. method:: Queue.enqmany(messages)
4545

46-
Enqueues multiple messages into the queue. The ``messages`` parameter must be a
47-
sequence containing :ref:`message property <msgproperties>` objects which
48-
have all had their payload attribute set to a value that the queue
46+
Enqueues multiple messages into the queue. The ``messages`` parameter must
47+
be a sequence containing :ref:`message property <msgproperties>` objects
48+
which have all had their payload attribute set to a value that the queue
4949
supports.
5050

5151
.. warning::
5252

53-
Calling this function in parallel on different connections
54-
acquired from the same pool may fail due to Oracle bug 29928074. Ensure
55-
that this function is not run in parallel, use standalone connections or
56-
connections from different pools, or make multiple calls to
57-
:meth:`Queue.enqone()` instead. The function :meth:`Queue.deqmany()`
58-
call is not affected.
59-
53+
Prior to Oracle Database 21c, calling this function in parallel on
54+
different connections acquired from the same pool may fail due to
55+
Oracle bug 29928074. Either ensure that this function is not run in
56+
parallel, use standalone connections or connections from different
57+
pools, or make multiple calls to :meth:`Queue.enqone()` instead. The
58+
function :meth:`Queue.deqmany()` call is not affected.
6059

6160
For consistency and compliance with the PEP 8 naming style, the name of
6261
the method was changed from `enqMany()`. The old name will continue
6362
to work for a period of time.
6463

65-
6664
.. method:: Queue.enqone(message)
6765

6866
Enqueues a single message into the queue. The message must be a

0 commit comments

Comments
 (0)