Conversation
|
@ManishMadan2882 is attempting to deploy a commit to the Arc53 Team on Vercel. A member of the Team first needs to authorize it. |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #1742 +/- ##
==========================================
+ Coverage 28.35% 28.82% +0.46%
==========================================
Files 85 89 +4
Lines 5273 5444 +171
==========================================
+ Hits 1495 1569 +74
- Misses 3778 3875 +97 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Charlesnorris509
left a comment
There was a problem hiding this comment.
Hey @manish It seems like you are done yet with this, but I came across some issues that I think you should take into consideration, The cuurent S3 connection script is implementing Boto3.client() but if you added a config section you would be able to ensure that transmission use SSL for security and in transit encryption. You should also try to overwrite the current boto3 retry components in the process_files() portion to limit unnecessary file downloads
|
Hey @Charlesnorris509 Maybe im mistaken, can you provide some links to documentation about it? |
|
@ManishMadan2882, the current version of Boto use SSL by default but since you've specified which version of the API you'll use, it might actually route it to an insecure endpoint. Here's the link for the documentation https://boto3.amazonaws.com/v1/documentation/api/latest/guide/configuration.html The proper Implementation should like this 'from botocore.config import Config self.s3 = boto3.client( |
|
@Charlesnorris509 In boto3 version 1.35.97, the default signature version used for signing AWS service requests is Signature Version 4 (s3v4). |
|
Then sorry, i should have checked the version, and i think you should be fine then |
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|

- Adding abstraction for uploading, retrieving, processing, deleting files
- Option for S3 and localStorage
- Updated file attachment uploads
- ease of swapping between storage(local/cloud)