From 5ae4b6b159f5777bdf013e222647b78a3c174877 Mon Sep 17 00:00:00 2001 From: SKairinos Date: Tue, 31 Dec 2024 09:27:53 +0000 Subject: [PATCH] fix: db schema name --- codeforlife/settings/django.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codeforlife/settings/django.py b/codeforlife/settings/django.py index 64ece41..04eebed 100644 --- a/codeforlife/settings/django.py +++ b/codeforlife/settings/django.py @@ -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.