Skip to content

Commit

Permalink
merge main
Browse files Browse the repository at this point in the history
  • Loading branch information
senthil-athiban committed Aug 1, 2024
1 parent 1e6b0f5 commit 8914e11
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions store/app/crud/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,7 @@ async def _create_s3_bucket(self) -> None:
"""Creates an S3 bucket if it does not already exist."""
try:
await self.s3.meta.client.head_bucket(Bucket=settings.s3.bucket)
print(f"Bucket {settings.s3.bucket} already exists.")
logger.info("Found existing bucket %s", settings.s3.bucket)
except ClientError:
logger.info("Creating %s bucket", settings.s3.bucket)
Expand Down
2 changes: 1 addition & 1 deletion store/settings/configs/local.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
crypto:
jwt_secret: fakeJwtSecret
s3:
bucket: artifacts
bucket: artifacts-senthil-store
prefix: ""
dynamo:
table_name: robolist-local
Expand Down

0 comments on commit 8914e11

Please sign in to comment.