8000 Additional debugging for network connection failure by dfangl · Pull Request #8602 · localstack/localstack · GitHub
[go: up one dir, main page]

Skip to content

Additional debugging for network connection failure #8602

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jul 4, 2023
Merged
Changes from 1 commit
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
Prev Previous commit
fix missing s3 discriminator
  • Loading branch information
dfangl committed Jul 3, 2023
commit 17dc21c5f6f2ea2999bbdfe5cd3eee70a3046f27
2 changes: 1 addition & 1 deletion localstack/services/awslambda/invocation/lambda_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ def generate_presigned_url(self, endpoint_url: str | None = None) -> str:
"""
Generates a presigned url pointing to the code archive
"""
s3_client = connect_to(region_name="us-east-1", endpoint_url=endpoint_url)
s3_client = connect_to(region_name="us-east-1", endpoint_url=endpoint_url).s3
params = {"Bucket": self.s3_bucket, "Key": self.s3_key}
if self.s3_object_version:
params["VersionId"] = self.s3_object_version
Expand Down
0