Skip to content

Commit

Permalink
update s3 bucket
Browse files Browse the repository at this point in the history
  • Loading branch information
devksingh4 committed Jul 12, 2024
1 parent 8056d6f commit c804952
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion code/util/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def student_post_profile():
json_body: dict = app.current_event.json_body
json_body['email'] = email
json_body['username'] = email
json_body['resumePdfUrl'] = f"s3://{RUN_ENV}/resume_{email}.pdf"
json_body['resumePdfUrl'] = f"s3://{S3_BUCKET}/resume_{email}.pdf"
try:
data = json.loads(StudentProfileDetails(**json_body).model_dump_json(), parse_float=Decimal)
dynamo_data = convert_to_dynamodb_json(data)
Expand Down
2 changes: 1 addition & 1 deletion samconfig.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ region = "us-east-1"
confirm_changeset = true
capabilities = "CAPABILITY_IAM CAPABILITY_NAMED_IAM"
image_repositories = []
tags = "project=\"infra-resume-book\" techlead=\"jgoon2@illinois.edu\""
tags = "project=\"infra-resume-book\" techlead=\"dsingh14@illinois.edu\""

0 comments on commit c804952

Please sign in to comment.