Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion src/humiolib/HumioClient.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__(
Expand Down