-
Notifications
You must be signed in to change notification settings - Fork 2
Started migration for buckerVersionStats #351
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
base: development/1.16
Are you sure you want to change the base?
Conversation
Hello sylvainsenechal,My role is to assist you with the merge of this Available options
Available commands
Status report is not available. |
Incorrect fix versionThe
Considering where you are trying to merge, I ignored possible hotfix versions and I expected to find:
Please check the |
total: { | ||
count: BigInt(stats.current.count + stats.noncurrent.count), | ||
size: BigInt(stats.current.size + stats.noncurrent.size), | ||
count: String(stats.current.count + stats.noncurrent.count), |
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.
there was a weird error with the logger when using bigInt
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.
nit: not sure if String()
function shoud be used (as you did), or if the toString()
method should be preferred. I did not find any mention of BigInt support with the String()
function, though running in a node.js shell it seems to work just as well... 🤷♂️
a5066dc
to
6bddc77
Compare
log.error('batch delete error', { error: err }); | ||
}); | ||
|
||
command.middlewareStack.add( |
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.
We get a badDigest error without this
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.
same as #348 (comment)
6bddc77
to
03e1a41
Compare
total: { | ||
count: BigInt(stats.current.count + stats.noncurrent.count), | ||
size: BigInt(stats.current.size + stats.noncurrent.size), | ||
count: String(stats.current.count + stats.noncurrent.count), |
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.
nit: not sure if String()
function shoud be used (as you did), or if the toString()
method should be preferred. I did not find any mention of BigInt support with the String()
function, though running in a node.js shell it seems to work just as well... 🤷♂️
log.error('batch delete error', { error: err }); | ||
}); | ||
|
||
command.middlewareStack.add( |
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.
same as #348 (comment)
Waiting for approvalThe following approvals are needed before I can proceed with the merge:
|
Issue : S3UTILS-200