Skip to content

Commit

Permalink
Changed default capacity for CloudWatchHandler to 512
Browse files Browse the repository at this point in the history
This seems to resolve an issue where early portions of logs sent to CloudWatch were missing
  • Loading branch information
Scott Collins committed Nov 14, 2024
1 parent 5ed6c34 commit 2b311c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pds/ingress/util/log_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ class CloudWatchHandler(BufferingHandler):
"""

def __init__(self, log_group_name, api_gateway_config, capacity=1024):
def __init__(self, log_group_name, api_gateway_config, capacity=512):
super().__init__(capacity)

self.log_group_name = log_group_name
Expand Down

0 comments on commit 2b311c9

Please sign in to comment.