Skip to content

Commit bc37351

Browse files
authored
chore: Use ingestion hosts for event capture (#116)
1 parent a5e8b7d commit bc37351

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 3.4.1 - 2024-02-09
2+
3+
1. Use new hosts for event capture as well
4+
15
## 3.4.0 - 2024-02-05
26

37
1. Point given hosts to new ingestion hosts

posthog/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def __init__(
100100
consumer = Consumer(
101101
self.queue,
102102
self.api_key,
103-
host=host,
103+
host=self.host,
104104
on_error=on_error,
105105
flush_at=flush_at,
106106
flush_interval=flush_interval,

posthog/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = "3.4.0"
1+
VERSION = "3.4.1"
22

33
if __name__ == "__main__":
44
print(VERSION, end="") # noqa: T201

0 commit comments

Comments
 (0)