diff --git a/src/connections/sources/catalog/libraries/server/python/index.md b/src/connections/sources/catalog/libraries/server/python/index.md index 8e00f08b37..8e7b9590af 100644 --- a/src/connections/sources/catalog/libraries/server/python/index.md +++ b/src/connections/sources/catalog/libraries/server/python/index.md @@ -404,9 +404,9 @@ There is a maximum of `500KB` per batch request and `32KB` per call. If the module detects that it can't flush faster than it's receiving messages, it'll simply stop accepting messages. This means your program will never crash because of a backed up analytics queue. The default `max_queue_size` is `10000`. -### How do I flush right now?! +### Flush -You can also flush on demand. For example, at the end of your program, you'll want to flush to make sure there's nothing left in the queue. Just call the `flush` method: +You can call the `flush` method at the end of your program to make sure there's nothing left in the queue: ```python analytics.flush()