-
Notifications
You must be signed in to change notification settings - Fork 16
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
Replace 'vCPU' with 'vcpus' #345
Conversation
Can one of the admins verify this patch? |
Nice, thanks! |
src/Utils/querySearch.js
Outdated
@@ -5,6 +5,7 @@ const OPERATORS = ['<', '>', '=']; | |||
const parseQuery = (query) => { | |||
query = query.replace('memory', 'memory_mib'); | |||
query = query.replace('storage', 'storage_gb'); | |||
query = query.replace('vCPU', 'vcpus'); |
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.
I'd suggest applying it also to vcpu
, maybe use a case-insensitive query?
/retest |
@stejskalleos feel free to use |
ff067e8
to
884aee4
Compare
GCE shows vCPU in the description of the machine, not the vcpus. Refs: HMS-2301
884aee4
to
1792ea6
Compare
/retest |
I've addressed @avitova and @amirfefer concerns, so we can get this in, could you please re-review? 🙏 |
/retest weird timeout 🤔 |
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.
Looks good to me, @amirfefer merge at will. :)
I'll go ahead and merge, Amir might not get to it and we addressed his comments, so we should be good :) |
GCE shows
vCPU
in the description of the machine, not thevcpus
.