Skip to content

Commit

Permalink
Misc Typo fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Abhijeet Kasurde <[email protected]>
  • Loading branch information
Akasurde committed Aug 2, 2024
1 parent 76c044d commit ee03e99
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
host_path: The json path inside the event data to find hosts.
Do nothing if the key is not present or does exist in event
path_separator: The separator to interpret host_path. Default to "."
host_separator: The separator to interpet host string.
host_separator: The separator to interpret host string.
host_path can point to a string or a list. If it is a single
string but contains multiple hosts, use this parameter to
delimits the hosts. Treat the vale as a single host if the
Expand Down
2 changes: 1 addition & 1 deletion extensions/eda/plugins/event_source/aws_cloudtrail.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
delay_seconds: The number of seconds to wait between polling (default 10sec)
lookup_attributes: The optional list of lookup attributes.
lookup attribute are dictionnary with an AttributeKey (string),
lookup attribute are dictionary with an AttributeKey (string),
which specifies an attribute on which to filter the events
returned and an AttributeValue (string) which specifies
a value for the specified AttributeKey
Expand Down
2 changes: 1 addition & 1 deletion extensions/eda/plugins/event_source/aws_sqs_queue.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ async def main(queue: asyncio.Queue, args: dict[str, Any]) -> None:
queue_url = response["QueueUrl"]

while True:
# This loop wont spin really fast as there is
# This loop won't spin really fast as there is
# essentially a sleep in the receive_message call
response = await client.receive_message(
QueueUrl=queue_url,
Expand Down
2 changes: 1 addition & 1 deletion extensions/eda/plugins/event_source/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
should be repeated. Default 0
repeat_count int Number of times each individual event in the playload
should be repeated. Default 1
blob_size int An arbitray blob of blob_size bytes to be inserted
blob_size int An arbitrary blob of blob_size bytes to be inserted
into every event payload. Default is 0 don't create
a blob
final_payload dict After all the events have been sent we send the optional
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def init_webserver():
"endpoint, expected_resp_data",
[
pytest.param("", "Endpoint available", id="valid_endpoint"),
pytest.param("nonexistant", "Endpoint unavailable", id="invalid_endpoint"),
pytest.param("nonexistent", "Endpoint unavailable", id="invalid_endpoint"),
],
)
def test_url_check_source_sanity(
Expand Down

0 comments on commit ee03e99

Please sign in to comment.