fix: s3 file path

This commit is contained in:
Timothy J. Baek 2024-11-03 01:07:43 -08:00
parent 0c6453078e
commit 6027c13227

View File

@ -51,7 +51,10 @@ class StorageProvider:
try:
self.s3_client.upload_file(file_path, self.bucket_name, filename)
return open(file_path, "rb").read(), file_path
return (
open(file_path, "rb").read(),
"s3://" + self.bucket_name + "/" + filename,
)
except ClientError as e:
raise RuntimeError(f"Error uploading file to S3: {e}")