-
Notifications
You must be signed in to change notification settings - Fork 74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
source.store resolves before public access is set to the S3 file #36
Comments
Hi! The ACL that is used is the Maybe the bucket is configured to disallowed public reads? Are you able to share (a screenshot of) the bucket permissions with us via [email protected]? |
Thanks for getting back to me. So, the image will eventually be uploaded and made public, there's no issue with that. Our problem is when this happens. As it stands, From our tests, it can take anything from a couple of hundred milliseconds to 10+ seconds (depending on image size) until the image is available in S3. Again, this is after source.store resolved. The immediate result is a 403 error which is why I assumed the ACL. Hope this explains it a bit better. This becomes an issue when one attempts to load that image immediately after a call. |
Thanks for the clarification. A 403 error could indicate the file is (still) missing. As far as we're aware, this is expected behaviour of AWS S3. After upload succeeds, the image may not be immediately available as it propagates through the S3 infrastructure. However, to be sure it might be advisable to contact AWS support about this. In any case, the Tinify API should not return a successful response until the underlying AWS S3 API call has completed successfully. And as long as you await on the response with The ACL is applied when the image is created, so I do not expect this is a factor. |
Thanks for looking into this further. Could be an S3 issue, but we don't experience this when we upload to S3 directly. The following works as expected:
Where s3.upload file is a function that returns a fulfilled promise when the S3 client completes the upload. The image url is available straight away. |
Thanks for the follow-up. I agree that it's suspicious that you do not observe this effect if you upload to S3 yourself. We'll try to investigate further to see if we can find something that explains this behaviour. |
Calling source.store on AWS S3 resolves likely before the ACL policy is set, resulting in a 403 error when accessing the image straight away
Steps to replicate
Open
path_to_example_bucket/my-images/optimized.jpg
Expected:
source.store to resolve when the optimized file is public.
The text was updated successfully, but these errors were encountered: