-
Notifications
You must be signed in to change notification settings - Fork 57
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
Access Denied for HEAD Bucket Request - bug? #173
Comments
@simon-fauconnier Please enable |
Here is the python trace : ---------START-HTTP--------- HTTP/1.1 200 ----------END-HTTP---------- |
Hi @balamurugana, any news about this issue? |
@simon-fauconnier I would need to get AWS access to debug the issue. |
Hi @balamurugana |
Fixes minio#173 Signed-off-by: Bala.FA <[email protected]>
@simon-fauconnier Please check the PR #173 |
The fix #176 solves the issue Thanks @balamurugana ! |
Description:
Hello,
I am encountering an issue with checking bucket existence using the
minio-cpp
client. While theGetObject
andPutObject
operations work correctly with the same bucket, theHEAD
request to check the bucket's existence returns a403 Forbidden
error. Below, I have provided the details of the issue and a comparison with the AWS SDK, which works as expected.Steps to Reproduce the Issue:
minio-cpp
:Observed Behavior:
When
client.Debug(true);
is enabled, the following output is observed:Expected Behavior:
The
HEAD
request should succeed without returning a403 Forbidden
error.Comparison with AWS SDK:
The same operation using the AWS SDK succeeds without any errors. Here is the successful
HEAD
request from the AWS SDK:Comparison with Python Client:
The issue does not occur when using the Python client for MinIO. The following Python code correctly checks for bucket existence:
The Python client successfully checks the existence of the bucket without any
403
errors.Environment Details:
The text was updated successfully, but these errors were encountered: