Skip to content

Commit

Permalink
Correct bug accessing send_interval config val
Browse files Browse the repository at this point in the history
  • Loading branch information
Russell-Tran committed Feb 18, 2021
1 parent 64a2abe commit 7cd140c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws_s3_desktop_uploader/desktop_uploader.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ def main(use_cloudwatch=True):
watchtower_handler = watchtower.CloudWatchLogHandler(
log_group=config["cloudwatch"]["log_group"],
stream_name=config["cloudwatch"]["stream_name"],
send_interval=config["send_interval"],
send_interval=config["cloudwatch"]["send_interval"],
create_log_group=False
)
logger.addHandler(watchtower_handler)
Expand Down

0 comments on commit 7cd140c

Please sign in to comment.