Skip to content

Commit 12f06e5

Browse files
committed
Fix flush/join instructions
1 parent e277713 commit 12f06e5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

posthog/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -626,7 +626,7 @@ def load_feature_flags():
626626

627627
def flush():
628628
"""
629-
Tell the client to flush.
629+
Tell the client to flush all queued events.
630630
631631
Examples:
632632
```python
@@ -642,7 +642,7 @@ def flush():
642642

643643
def join():
644644
"""
645-
Block program until the client clears the queue.
645+
Block program until the client clears the queue. Used during program shutdown. You should use `shutdown()` directly in most cases.
646646
647647
Examples:
648648
```python

0 commit comments

Comments
 (0)