Skip to content
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

Making this work with stable Covalent #93

Draft
wants to merge 8 commits into
base: develop
Choose a base branch
from
Draft
Next Next commit
debugging: updating the container image to raise the error with trace…
…back
  • Loading branch information
kessler-frost committed Nov 6, 2023
commit 983a678c0a8d05af40d89c7194b8eeba75e485e1
2 changes: 1 addition & 1 deletion covalent_awslambda_plugin/assets/infra/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "5.17.0"
version = "~> 5.17.0"
}
}
}
2 changes: 2 additions & 0 deletions covalent_awslambda_plugin/exec.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,5 @@ def handler(event, context):
json.dump(str(ex), f)

s3.upload_file(local_exception_filename, s3_bucket, exception_filename)

raise ex
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
boto3==1.24.35
boto3>=1.24.35
covalent-aws-plugins>=0.12.0,<1