From 2f36b8b62fdd4337c1b1ff2d1b69b7021ced85c7 Mon Sep 17 00:00:00 2001 From: ethan <113357040+ethanmckean@users.noreply.github.com> Date: Wed, 5 Jun 2024 09:31:05 -0400 Subject: [PATCH 1/2] Fixed typo in HumioClient.py --- src/humiolib/HumioClient.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/humiolib/HumioClient.py b/src/humiolib/HumioClient.py index e78ebe6..770ec46 100644 --- a/src/humiolib/HumioClient.py +++ b/src/humiolib/HumioClient.py @@ -62,7 +62,7 @@ class HumioClient(BaseHumioClient): """ A Humio client that gives full access to the underlying API. While this client can be used for ingesting data, - we recommend using the HumioIngestClient made exclusivly for ingestion. + we recommend using the HumioIngestClient made exclusively for ingestion. """ def __init__( From 8d2d9cca5d140e5f259e26e4eb0975f6cd01ec83 Mon Sep 17 00:00:00 2001 From: ethan <113357040+ethanmckean@users.noreply.github.com> Date: Wed, 5 Jun 2024 11:16:20 -0400 Subject: [PATCH 2/2] Update README.rst --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index a2619f0..3db8187 100644 --- a/README.rst +++ b/README.rst @@ -88,7 +88,7 @@ It is mainly used for performing queries, as well as managing different aspects for event in poll_result.events: print(event) - # With a static queryjob you can poll it iterativly until it has been exhausted + # With a static queryjob you can poll it iteratively until it has been exhausted queryjob = client.create_queryjob("Login Attempt Failed", is_live=False) for poll_result in queryjob.poll_until_done(): print(poll_result.metadata)