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 setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def read_text_file(fname):
description="a python log handler that pushes logs into AWS sqs",
license=read_text_file('LICENSE'),
keywords="zillow",
url="http://github.com/zillow/python-sqs-logging-handler",
url="https://github.com/zillow/python-sqs-logging-handler",
packages=find_packages(),
long_description=read_text_file('README.md'),
classifiers=[
Expand Down
2 changes: 1 addition & 1 deletion sqs_log_handler/sqsloghandler.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def __init__(self,
Sends log messages to SQS so downstream processors can consume
(e.g. push the log messages to Splunk).
:param queue: SQS queue name.
:param aws_key_id: aws key id. Explicit credential parameters is
:param aws_key_id: aws key id. Explicit credential parameters are
not needed when running with EC2 role-based authentication.
:param secret_key: secret key associated with the key id.
"""
Expand Down