Compare commits

...
1 Commits
Author SHA1 Message Date
Neil KakkarandGitHub bc37351ab4 chore: Use ingestion hosts for event capture (#116) 2024-02-13 11:19:21 +00:00
3 changed files with 6 additions and 2 deletions
+4
View File
@@ -1,3 +1,7 @@
## 3.4.1 - 2024-02-09
1. Use new hosts for event capture as well
## 3.4.0 - 2024-02-05
1. Point given hosts to new ingestion hosts
+1 -1
View File
@@ -100,7 +100,7 @@ class Client(object):
consumer = Consumer(
self.queue,
self.api_key,
host=host,
host=self.host,
on_error=on_error,
flush_at=flush_at,
flush_interval=flush_interval,
+1 -1
View File
@@ -1,4 +1,4 @@
VERSION = "3.4.0"
VERSION = "3.4.1"
if __name__ == "__main__":
print(VERSION, end="") # noqa: T201