fix docs for per query timeout

This commit is contained in:
Roey Berman
2014-11-20 18:51:33 +02:00
parent d3533713c7
commit b3f64e16b0

View File

@@ -609,26 +609,31 @@ None means no timeout.
Fetch all objects with a timeout of 5 seconds Fetch all objects with a timeout of 5 seconds
.. code-block:: python .. code-block:: python
Row.objects().timeout(5).all() Row.objects().timeout(5).all()
Create a single row with a 50ms timeout Create a single row with a 50ms timeout
.. code-block:: python .. code-block:: python
Row(id=1, name='Jon').timeout(0.05).create() Row(id=1, name='Jon').timeout(0.05).create()
Delete a single row with no timeout Delete a single row with no timeout
.. code-block:: python .. code-block:: python
Row(id=1).timeout(None).delete() Row(id=1).timeout(None).delete()
Update a single row with no timeout Update a single row with no timeout
.. code-block:: python .. code-block:: python
Row(id=1).timeout(None).update(name='Blake') Row(id=1).timeout(None).update(name='Blake')
Batch query timeouts Batch query timeouts
.. code-block:: python .. code-block:: python
with BatchQuery(timeout=10) as b: with BatchQuery(timeout=10) as b: