-
Notifications
You must be signed in to change notification settings - Fork 282
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
refactor: rewrite listParts
in TypeScript
#1160
Conversation
Specifically with s3, MinIO does not care about region. |
can you paste full stack trace? |
With older versions, with or without region specified in client options, it works. var s3Client = new Minio.Client({
endPoint: 's3.amazonaws.com',
accessKey: 's3-acc-key',
secretKey: 's3-password-tbd,
region: 'us-east-1', // try with or without region. prior releases work as expected.
//pathStyle: true,
//useSSL: true,
})
s3Client.traceOn()
const checkConn = () => {
const objectName = '1.png'
const bucketName = 'sph-test-inc-upld'
s3Client.statObject(bucketName, objectName, (e, d) => {
console.log(e, d)
})
} Trace without region specified
|
So this doesn't happened in current master branch, but on 5c91791? |
I tested with the past two releases. I can check on master and confirm. |
this may be caused by #1156 |
may be. in master, i am seeing the below in both (with/without region) cases
|
should fix this first... |
@prakashsvmx please try #1165 , I tested on s3, it looks fine。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So far it's all good (I can't press approve as the button is disabled), just a few notes that might be discussed.
@kaankabalak please? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
No description provided.