Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions influxdb_client/client/influxdb_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,15 +265,15 @@ def retry(self, conf: (str, str, str), data: str, exception: InfluxDBError):

:param write_options: Write API configuration
:param point_settings: settings to store default tags
:key success_callback: The callable ``callback`` to run after successfully writen a batch.
:key success_callback: The callable ``callback`` to run after having successfully written a batch.

The callable must accept two arguments:
- `Tuple`: ``(bucket, organization, precision)``
- `str`: written data

**[batching mode]**

:key error_callback: The callable ``callback`` to run after unsuccessfully writen a batch.
:key error_callback: The callable ``callback`` to run after having unsuccessfully written a batch.

The callable must accept three arguments:
- `Tuple`: ``(bucket, organization, precision)``
Expand Down
Loading