Skip to content

Commit

Permalink
fix: db schema name
Browse files Browse the repository at this point in the history
  • Loading branch information
SKairinos committed Dec 31, 2024
1 parent ce92fcb commit 5ae4b6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion codeforlife/settings/django.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def get_databases():
s3: "S3Client" = boto3.client("s3")
db_data_object = s3.get_object(
Bucket=t.cast(str, AWS_S3_APP_BUCKET),
Key=f"{AWS_S3_APP_FOLDER}/dbMetadata/{APP_ID}/app.dbdata",
Key=f"{AWS_S3_APP_FOLDER}/dbMetadata/{APP_ID}/db.dbdata",
)

# Load the object as a JSON dict.
Expand Down

0 comments on commit 5ae4b6b

Please sign in to comment.