-
Notifications
You must be signed in to change notification settings - Fork 547
DEVPROD-20053 - Remove perf.send from latest release branch #1433
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
Conversation
eramongodb
left a comment
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.
Thank you very much!
Feedback primarily concerns minor code quality suggestions/improvements.
| http_status=$(echo "$response" | grep "HTTP_STATUS" | awk -F':' '{print $2}') | ||
| response_body=$(echo "$response" | sed '/HTTP_STATUS/d') |
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.
| http_status=$(echo "$response" | grep "HTTP_STATUS" | awk -F':' '{print $2}') | |
| response_body=$(echo "$response" | sed '/HTTP_STATUS/d') | |
| http_status="$(echo "$response" | grep "HTTP_STATUS" | awk -F':' '{print $2}')" | |
| response_body="$(echo "$response" | sed '/HTTP_STATUS/d')" |
SC2086. Also applies to other instances of var=$(...) above.
Co-authored-by: Ezra Chung <88335979+eramongodb@users.noreply.github.com>
Co-authored-by: Ezra Chung <88335979+eramongodb@users.noreply.github.com>
Co-authored-by: Ezra Chung <88335979+eramongodb@users.noreply.github.com>
Thanks for the suggestions and feedback! I've applied the changes |
The perf.send command is no longer being maintained and will be decommissioned soon. Users can now submit performance data using the "raw_perf_results" end point provided by the performance-monitoring-api. This PR migrates the latest release project over to that API.