Skip to content

Commit

Permalink
Mark ssl_context as optional in the service constructor (#6469)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucashuy authored Dec 19, 2023
1 parent 4890f4f commit 9236233
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion samcli/commands/local/lib/local_lambda_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class LocalLambdaService:
that are defined in a SAM file.
"""

def __init__(self, lambda_invoke_context, port, host, ssl_context):
def __init__(self, lambda_invoke_context, port, host, ssl_context=None):
"""
Initialize the Local Lambda Invoke service.
Expand Down

0 comments on commit 9236233

Please sign in to comment.